git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1361 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
John Peterson 2008-12-01 07:54:18 +00:00
parent a09a6330d5
commit 1a9192d2ba
1 changed files with 3 additions and 0 deletions

View File

@ -326,8 +326,11 @@ bool SymbolDB::SaveMap(const char *filename, bool WithCodes) const
// Save a map file
const Symbol &rSymbol = itr->second;
if(!WithCodes)
{
fprintf(f,"%08x %08x %08x %i %s\n", rSymbol.address, rSymbol.size, rSymbol.address,
0, rSymbol.name.c_str());
itr++;
}
// Save a code file
else