Add 2 games to the database. Fix a Linux warning (non pod-safe object).

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3028 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
arcum42 2010-05-16 07:12:05 +00:00
parent bd1b566347
commit 8d6532a987
2 changed files with 9 additions and 1 deletions

View File

@ -9434,6 +9434,10 @@ Name = Cabela's Legendary Adventures
Region = NTSC-U Region = NTSC-U
Compat = 4 Compat = 4
--------------------------------------------- ---------------------------------------------
Serial = SLUS-21890
Name = Mana Khemia 2 : Fall Of Alchemy
Region = NTSC-U
---------------------------------------------
Serial = SLUS-28002 Serial = SLUS-28002
Name = Red Faction [Trade Demo] Name = Red Faction [Trade Demo]
Region = NTSC-U Region = NTSC-U
@ -15869,6 +15873,10 @@ Serial = SLPM-65130
Name = Dramatic Soccer Game - Becoming a National Team Member Name = Dramatic Soccer Game - Becoming a National Team Member
Region = NTSC-J Region = NTSC-J
--------------------------------------------- ---------------------------------------------
Serial = SLPM-65131
Name = Atelier Judie: Gramnad no Renkinjutsushi
Region = NTSC-J
---------------------------------------------
Serial = SLPM-65132 Serial = SLPM-65132
Name = Warriors of Might and Magic Name = Warriors of Might and Magic
Region = NTSC-J Region = NTSC-J

View File

@ -357,7 +357,7 @@ static __forceinline void _reloadElfInfo(wxString elfpath)
if (GameDB->setGame(gameSerial.ToUTF8().data())) { // Game Found if (GameDB->setGame(gameSerial.ToUTF8().data())) { // Game Found
Console.WriteLn ("Game = %s (%s)", GameDB->getString("Name").c_str(), GameDB->getString("Region").c_str()); Console.WriteLn ("Game = %s (%s)", GameDB->getString("Name").c_str(), GameDB->getString("Region").c_str());
} }
else Console.Warning("Game not found in database [%s]", gameSerial.ToAscii()); else Console.Warning("Game not found in database [%s]", gameSerial.ToAscii().data());
} }
} }