removing the change that caused movie data to be dumped binary by default. We want text until we make a toggle option where a user can select binary.

This commit is contained in:
adelikat 2010-05-13 13:46:11 +00:00
parent 8610f4ffb5
commit f04cb475a4
1 changed files with 2 additions and 2 deletions

View File

@ -296,7 +296,7 @@ void MovieRecord::dumpBinary(MovieData* md, std::ostream* os, int index)
void MovieRecord::dump(MovieData* md, std::ostream* os, int index)
{
if (currMovieData.binaryFlag)
if (false/*currMovieData.binaryFlag*/)
{
dumpBinary(md, os, index);
return;
@ -1243,7 +1243,7 @@ bool FCEUMOV_ReadState(std::istream* is, uint32 size)
delete[] str;
*/
currMovieData.dump(osRecordingMovie, currMovieData.binaryFlag);
currMovieData.dump(osRecordingMovie, false/*currMovieData.binaryFlag*/);
movieMode = MOVIEMODE_RECORD;
}
}