diff --git a/desmume/src/movie.cpp b/desmume/src/movie.cpp index 9d73490ac..7db7b687e 100644 --- a/desmume/src/movie.cpp +++ b/desmume/src/movie.cpp @@ -473,7 +473,7 @@ static void FCEUMOV_AddInputState() if(movieMode == MOVIEMODE_PLAY) { //stop when we run out of frames - if(currFrameCounter == currMovieData.records.size()) + if(currFrameCounter == (int)currMovieData.records.size()) { StopPlayback(); } @@ -490,7 +490,7 @@ static void FCEUMOV_AddInputState() } //if we are on the last frame, then pause the emulator if the player requested it - if(currFrameCounter == currMovieData.records.size()-1) + if(currFrameCounter == (int)currMovieData.records.size()-1) { /*if(FCEUD_PauseAfterPlayback()) {