store ext bios / swi settings

This commit is contained in:
p989 2009-06-20 21:47:58 +00:00
parent 4489fcd31f
commit 642cbae742
1 changed files with 4 additions and 0 deletions

View File

@ -233,6 +233,10 @@ int MovieData::dump(std::ostream *os, bool binary)
*os << "romChecksum " << u32ToHexString(gameInfo.crc) << endl;
*os << "romSerial " << romSerial << endl;
*os << "guid " << guid.toString() << endl;
*os << "useExtBios " << CommonSettings.UseExtBIOS << endl;
if(CommonSettings.UseExtBIOS)
*os << "swiFromBios " << CommonSettings.SWIFromBIOS << endl;
for(uint32 i=0;i<comments.size();i++)
*os << "comment " << wcstombs(comments[i]) << endl;