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:
parent
8610f4ffb5
commit
f04cb475a4
|
@ -296,7 +296,7 @@ void MovieRecord::dumpBinary(MovieData* md, std::ostream* os, int index)
|
||||||
|
|
||||||
void MovieRecord::dump(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);
|
dumpBinary(md, os, index);
|
||||||
return;
|
return;
|
||||||
|
@ -1243,7 +1243,7 @@ bool FCEUMOV_ReadState(std::istream* is, uint32 size)
|
||||||
delete[] str;
|
delete[] str;
|
||||||
*/
|
*/
|
||||||
|
|
||||||
currMovieData.dump(osRecordingMovie, currMovieData.binaryFlag);
|
currMovieData.dump(osRecordingMovie, false/*currMovieData.binaryFlag*/);
|
||||||
movieMode = MOVIEMODE_RECORD;
|
movieMode = MOVIEMODE_RECORD;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue