mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 09:09:52 -06:00
Fix nowx build.
We really should integrate the nowx functionality into the main build, removing nowx and HAVE_WX checks and turning USE_WX into a variable that defaults to GUI use but can be overridden at the command line. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5630 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -123,7 +123,7 @@ static const int gcDefaultControls[] =
|
||||
0x00, // L semi-press
|
||||
0x00, // R semi-press
|
||||
};
|
||||
#else defined(USE_WX) && USE_WX
|
||||
#elif defined(USE_WX) && USE_WX
|
||||
{
|
||||
'X', // A
|
||||
'Z', // B
|
||||
@ -150,9 +150,10 @@ static const int gcDefaultControls[] =
|
||||
0, // L semi-press
|
||||
0, // R semi-press
|
||||
};
|
||||
#else
|
||||
{ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 };
|
||||
#endif
|
||||
|
||||
|
||||
Config g_Config;
|
||||
|
||||
// Run when created
|
||||
|
Reference in New Issue
Block a user