mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-09 12:08:05 +03:00
Windows AVIDump: support "silent" frame dumping
When enabled, the silent option will avoid popping up dialog boxes for overwrite confirmation or codec selection. The codec selection defaults to uncompressed RGB. This is required for FifoCI on Windows which needs to drive Dolphin from the command line exclusively.
This commit is contained in:
parent
405444d4fe
commit
3500740dd4
3 changed files with 17 additions and 2 deletions
|
@ -362,6 +362,7 @@ void SConfig::SaveMovieSettings(IniFile& ini)
|
|||
movie->Set("PauseMovie", m_PauseMovie);
|
||||
movie->Set("Author", m_strMovieAuthor);
|
||||
movie->Set("DumpFrames", m_DumpFrames);
|
||||
movie->Set("DumpFramesSilent", m_DumpFramesSilent);
|
||||
movie->Set("ShowInputDisplay", m_ShowInputDisplay);
|
||||
}
|
||||
|
||||
|
@ -603,6 +604,7 @@ void SConfig::LoadMovieSettings(IniFile& ini)
|
|||
movie->Get("PauseMovie", &m_PauseMovie, false);
|
||||
movie->Get("Author", &m_strMovieAuthor, "");
|
||||
movie->Get("DumpFrames", &m_DumpFrames, false);
|
||||
movie->Get("DumpFramesSilent", &m_DumpFramesSilent, false);
|
||||
movie->Get("ShowInputDisplay", &m_ShowInputDisplay, false);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue