mirror of
https://github.com/PabloMK7/citra.git
synced 2025-09-11 05:10:05 +00:00
citra_qt: Fix potential indeterminstism caused by starting record/playback
Previously the movie was started *after* core starts running, causing potential indeterminism. Some desyncs are still not fixed; they may be caused by core timing. More investigation is required.
This commit is contained in:
parent
e60e20666e
commit
f8eb9a541d
4 changed files with 57 additions and 39 deletions
|
@ -208,7 +208,7 @@ private slots:
|
|||
void OnCreateGraphicsSurfaceViewer();
|
||||
void OnRecordMovie();
|
||||
void OnPlayMovie();
|
||||
void OnCloseMovie(bool shutting_down = false);
|
||||
void OnCloseMovie();
|
||||
void OnCaptureScreenshot();
|
||||
#ifdef ENABLE_FFMPEG_VIDEO_DUMPER
|
||||
void OnStartVideoDumping();
|
||||
|
@ -269,6 +269,9 @@ private:
|
|||
QString movie_record_path;
|
||||
QString movie_record_author;
|
||||
|
||||
bool movie_playback_on_start = false;
|
||||
QString movie_playback_path;
|
||||
|
||||
// Video dumping
|
||||
bool video_dumping_on_start = false;
|
||||
QString video_dumping_path;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue