From 191196a2bb579e54550791a90c02887d69c3638a Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 15 May 2010 01:48:53 +0000 Subject: [PATCH] Win32 - When recording a movie, add it to recent movies --- changelog.txt | 1 + src/movie.cpp | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/changelog.txt b/changelog.txt index 2d2339cb..8dd6281c 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,4 @@ +14-may-2010 - adelikat - Win32 - When recording a movie, add it to recent movies 14-may-2010 - adelikat - Win32 - Replay dialog shows PAL flag & New PPU flag 14-may-2010 - adelikat - New PPU flag in movie headers (doesn't change an emulators PPU state when loading a movie) 13-may-2010 - adelikat - input display overhaul - a more desmume style system which shows both keys held the previous frame and immiately held keys that will be put in on the next frame diff --git a/src/movie.cpp b/src/movie.cpp index aad1929e..35eaf001 100644 --- a/src/movie.cpp +++ b/src/movie.cpp @@ -989,6 +989,10 @@ static void openRecordingMovie(const char* fname) if(!osRecordingMovie) FCEU_PrintError("Error opening movie output file: %s",fname); strcpy(curMovieFilename, fname); +#ifdef WIN32 + //Add to the recent movie menu + AddRecentMovieFile(fname); +#endif }