diff --git a/changelog.txt b/changelog.txt index 7a551861..30888e1b 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,4 @@ +10-august-2009 - adelikat - fixed bug that caused new movies be created in /movie instead of /movies 08-august-2009 - qeed - mappers - fixed mapper irq count, dragon ball z 3 should be playable again. 07-august-2009 - ugetab - win32 - imported NSF features from FCEU-XDSP-NSF diff --git a/src/file.cpp b/src/file.cpp index 7e5056d8..0a3357c1 100644 --- a/src/file.cpp +++ b/src/file.cpp @@ -603,7 +603,7 @@ std::string FCEU_MakeFName(int type, int id1, const char *cd1) if(odirs[FCEUIOD_MOVIES]) sprintf(ret,"%s"PSS"%s-%d.fm2",odirs[FCEUIOD_MOVIES],FileBase, id1); else - sprintf(ret,"%s"PSS"movie"PSS"%s-%d.fm2",BaseDirectory.c_str(),FileBase, id1); + sprintf(ret,"%s"PSS"movies"PSS"%s-%d.fm2",BaseDirectory.c_str(),FileBase, id1); id1++; } while (stat(ret, &fileInfo) == 0); break;