auto-select #DEVELOPER if #GDB_STUB
This commit is contained in:
parent
ed7b6cd6f6
commit
b6d3c26b2b
|
@ -40,6 +40,11 @@
|
|||
#include "config.h"
|
||||
#endif
|
||||
|
||||
//enforce a constraint: gdb stub requires developer
|
||||
#if defined(GDB_STUB) && !defined(DEVELOPER)
|
||||
#define DEVELOPER
|
||||
#endif
|
||||
|
||||
//xbox needs to include this to resemble windows
|
||||
#ifdef _XBOX
|
||||
#include <xtl.h>
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
//#define NOSSE2
|
||||
|
||||
//#define DEVELOPER //enables dev+ features
|
||||
//#define GDB_STUB //enables the gdb stub. for some reason this is separate from dev+ for now
|
||||
//#define GDB_STUB //enables the gdb stub. for some reason this is separate from dev+ for now. requires DEVELOPER.
|
||||
|
||||
//#define EXPERIMENTAL_WIFI_COMM //enables experimental wifi communication features which do not actually work yet
|
||||
//basic wifi register emulation is still enabled, to at least make it seem like the wifi is working in an empty universe
|
||||
|
|
Loading…
Reference in New Issue