From 4f6840120c4f73251073186510e87e4a6764f7c8 Mon Sep 17 00:00:00 2001 From: n-a-c-h <> Date: Sun, 10 Apr 2005 14:07:53 +0000 Subject: [PATCH] Removed debug info. --- zsnes/src/zstate.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zsnes/src/zstate.c b/zsnes/src/zstate.c index 9c1a8278..72e45236 100755 --- a/zsnes/src/zstate.c +++ b/zsnes/src/zstate.c @@ -209,7 +209,7 @@ void zmv_rewind_load(size_t, bool); void BackupCVFrame() { unsigned char *RewindBufferPos = StateBackup + LatestRewindPos*rewind_state_size; - printf("Backing up rewind in slot #%u\n", LatestRewindPos); + //printf("Backing up rewind in slot #%u\n", LatestRewindPos); if (MovieProcessing == 1) { zmv_rewind_save(LatestRewindPos, true); } else if (MovieProcessing == 2) { zmv_rewind_save(LatestRewindPos, false); } @@ -242,7 +242,7 @@ void RestoreCVFrame() } RewindBufferPos = StateBackup + LatestRewindPos*rewind_state_size; - printf("Restoring rewind in slot #%u\n", LatestRewindPos); + //printf("Restoring rewind in slot #%u\n", LatestRewindPos); if (MovieProcessing == 1) { zmv_rewind_load(LatestRewindPos, true); } else if (MovieProcessing == 2) { zmv_rewind_load(LatestRewindPos, false); }