diff --git a/changelog.txt b/changelog.txt index 33a0bcb7..7c34391f 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,4 +1,7 @@ ---version 2.0.2 released--- + +09-aug-2008 - zeromus - SF [ 2041944 ] Savestates remember Lua painting +09-aug-2008 - zeromus - support loading movies from archives 08-aug-2008 - adelikat - added input display to the FCEUX main menu 08-aug-2008 - adelikat - fixed the (null) in the default lua directory listing 08-aug-2008 - adelikat - added shift+L as default hotkey for reload lua script diff --git a/src/video.cpp b/src/video.cpp index 05f8f35f..68e14602 100644 --- a/src/video.cpp +++ b/src/video.cpp @@ -197,6 +197,10 @@ void FCEU_PutImage(void) } else { + //Save backbuffer before overlay stuff is written. + if(!FCEUI_EmulationPaused()) + memcpy(XBackBuf, XBuf, 256*256); + //Some messages need to be displayed before the avi is dumped DrawMessage(true); @@ -207,10 +211,6 @@ void FCEU_PutImage(void) if(!FCEUI_EmulationPaused()) FCEUI_AviVideoUpdate(XBuf); - //Save backbuffer before overlay stuff is written. - if(!FCEUI_EmulationPaused()) - memcpy(XBackBuf, XBuf, 256*256); - //Save snapshot before overlay stuff is written. if(dosnapsave) {