Fixed bug that caused new movies be created in /movie instead of /movies
This commit is contained in:
parent
698f08eaef
commit
6411ba535a
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue