mirror of https://github.com/PCSX2/pcsx2.git
Get Linux building again.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3044 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
7e924084e0
commit
3fd7339c3b
|
@ -373,12 +373,11 @@ static wxString compatToStringWX(int compat) {
|
|||
}
|
||||
}
|
||||
|
||||
#define checkGamefix(gFix) { \
|
||||
if (gameDB->keyExists(#gFix)) { \
|
||||
SetGameFixConfig().##gFix = gameDB->getBool(#gFix); \
|
||||
wxString sKey = L#gFix; \
|
||||
Console.WriteLn(L"Loading Gamefix: %s", sKey.c_str()); \
|
||||
} \
|
||||
#define checkGamefix(gFix) { \
|
||||
if (gameDB->keyExists(#gFix)) { \
|
||||
SetGameFixConfig().gFix = gameDB->getBool(#gFix); \
|
||||
Console.Write(L"Loading Gamefix:"); Console.WriteLn(#gFix); \
|
||||
} \
|
||||
}
|
||||
|
||||
// Load Game Settings found in database
|
||||
|
|
Loading…
Reference in New Issue