diff --git a/changelog.txt b/changelog.txt index 527887ff..9a52e56f 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,4 @@ +23-may-2010 - adelikat - Win32 - Replay dialog - fix bug that was causing it to always report savestate movies as soft-reset 23-may-2010 - adelikat - Fix PlayMovieFromBeginning when using a movie that starts from savestate 23-may-2010 - cah4e3 - mapper 19 savestate fix mirroring for "Dream Master (J)" corrected to "four-screen" by CRC check 23-may-2010 - ugetab - Win32 - Fixed bug involving pausing emulation outside of the debugger, then trying to use the debugger commands, and having teh CPU registers become corrupted. diff --git a/src/movie.cpp b/src/movie.cpp index cfb9976f..c2e83caa 100644 --- a/src/movie.cpp +++ b/src/movie.cpp @@ -1522,6 +1522,7 @@ bool FCEUI_MovieGetInfo(FCEUFILE* fp, MOVIE_INFO& info, bool skipFrameCount) info.movie_version = md.version; info.poweron = md.savestate.size()==0; + info.reset = false; //Soft-reset isn't used from starting movies anymore, so this will be false, better for FCEUFILE to have that info (as |1| on the first frame indicates it info.pal = md.palFlag; info.ppuflag = md.PPUflag; info.nosynchack = true;