Fixed rewind during movie playback, that has got to be the most idiotic typo I made to date.

This commit is contained in:
n-a-c-h
2005-03-29 10:33:54 +00:00
parent 6821e5a0dd
commit 9d7c404dab

View File

@@ -286,7 +286,7 @@ void BackupCVFrame()
//printf("Backing up rewind in slot #%u\n", CBackupPos); //printf("Backing up rewind in slot #%u\n", CBackupPos);
copy_state_data(RewindBufferPos, memcpyinc, false); copy_state_data(RewindBufferPos, memcpyinc, false);
if (MovieProcessing == 1) { zmv_rewind_save(CBackupPos, true); } if (MovieProcessing == 1) { zmv_rewind_save(CBackupPos, true); }
else if (MovieProcessing == 1) { zmv_rewind_save(CBackupPos, false); } else if (MovieProcessing == 2) { zmv_rewind_save(CBackupPos, false); }
RewindTimer = ActualRewindFrames; RewindTimer = ActualRewindFrames;
} }
@@ -296,7 +296,7 @@ void RestoreCVFrame()
//printf("Restoring rewind in slot #%u\n", PBackupPos); //printf("Restoring rewind in slot #%u\n", PBackupPos);
copy_state_data(RewindBufferPos, memcpyrinc, true); copy_state_data(RewindBufferPos, memcpyrinc, true);
if (MovieProcessing == 1) { zmv_rewind_save(CBackupPos, true); } if (MovieProcessing == 1) { zmv_rewind_save(CBackupPos, true); }
else if (MovieProcessing == 1) { zmv_rewind_save(CBackupPos, false); } else if (MovieProcessing == 2) { zmv_rewind_save(CBackupPos, false); }
RewindTimer = ActualRewindFrames; RewindTimer = ActualRewindFrames;
} }