From 8d6532a98772d0576028c0920a9c32455a96e36c Mon Sep 17 00:00:00 2001 From: arcum42 Date: Sun, 16 May 2010 07:12:05 +0000 Subject: [PATCH] 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 --- bin/DataBase.dbf | 8 ++++++++ pcsx2/CDVD/CDVD.cpp | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/bin/DataBase.dbf b/bin/DataBase.dbf index 773308d818..9e27e84c8b 100644 --- a/bin/DataBase.dbf +++ b/bin/DataBase.dbf @@ -9434,6 +9434,10 @@ Name = Cabela's Legendary Adventures Region = NTSC-U Compat = 4 --------------------------------------------- +Serial = SLUS-21890 +Name = Mana Khemia 2 : Fall Of Alchemy +Region = NTSC-U +--------------------------------------------- Serial = SLUS-28002 Name = Red Faction [Trade Demo] Region = NTSC-U @@ -15869,6 +15873,10 @@ Serial = SLPM-65130 Name = Dramatic Soccer Game - Becoming a National Team Member Region = NTSC-J --------------------------------------------- +Serial = SLPM-65131 +Name = Atelier Judie: Gramnad no Renkinjutsushi +Region = NTSC-J +--------------------------------------------- Serial = SLPM-65132 Name = Warriors of Might and Magic Region = NTSC-J diff --git a/pcsx2/CDVD/CDVD.cpp b/pcsx2/CDVD/CDVD.cpp index 001ae85b19..d3ea4f4be5 100644 --- a/pcsx2/CDVD/CDVD.cpp +++ b/pcsx2/CDVD/CDVD.cpp @@ -357,7 +357,7 @@ static __forceinline void _reloadElfInfo(wxString elfpath) if (GameDB->setGame(gameSerial.ToUTF8().data())) { // Game Found 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()); } }