Fix movie reset desync problem (hopefully), the reset should be done at frame boundary regardless of movie play/record.

This commit is contained in:
gocha 2012-08-11 12:55:22 +09:00
parent 4afbde805f
commit 36f2e055ab
1 changed files with 2 additions and 2 deletions

View File

@ -265,7 +265,7 @@ static void restore_movie_settings (void);
static int bytes_per_sample (void);
static void reserve_buffer_space (uint32);
static void reset_controllers (void);
static void read_frame_controller_data (bool, void (*resetFunc)() = S9xSoftReset);
static void read_frame_controller_data (bool, void (*resetFunc)() = NULL);
static void write_frame_controller_data (void);
static void flush_movie (void);
static void truncate_movie (void);
@ -1109,7 +1109,7 @@ void MovieApplyNextInput(void)
return;
uint8 *InputBufferPtr = Movie.InputBufferPtr;
read_frame_controller_data(false, NULL);
read_frame_controller_data(false, S9xSoftReset);
Movie.InputBufferPtr = InputBufferPtr;
}