Added gpu3DNull to allow compile.
This commit is contained in:
parent
db6af5a6a6
commit
c6f7337e78
|
@ -33,6 +33,7 @@
|
|||
#include "../debug.h"
|
||||
#include "../sndsdl.h"
|
||||
#include "../ctrlssdl.h"
|
||||
#include "../render3D.h"
|
||||
|
||||
volatile BOOL execute = FALSE;
|
||||
|
||||
|
@ -45,6 +46,11 @@ SoundInterface_struct *SNDCoreList[] = {
|
|||
NULL
|
||||
};
|
||||
|
||||
GPU3DInterface *core3DList[] = {
|
||||
&gpu3DNull
|
||||
};
|
||||
|
||||
|
||||
/* Our keyboard config is different because of the directional keys */
|
||||
const u16 cli_kb_cfg[NB_KEYS] =
|
||||
{ SDLK_c, // A
|
||||
|
|
|
@ -36,6 +36,11 @@ SoundInterface_struct *SNDCoreList[] = {
|
|||
NULL
|
||||
};
|
||||
|
||||
GPU3DInterface *core3DList[] = {
|
||||
&gpu3DNull
|
||||
};
|
||||
|
||||
|
||||
/* ***** ***** TOOLS ***** ***** */
|
||||
|
||||
GList * tools_to_update = NULL;
|
||||
|
|
|
@ -60,6 +60,11 @@ SoundInterface_struct *SNDCoreList[] = {
|
|||
NULL
|
||||
};
|
||||
|
||||
GPU3DInterface *core3DList[] = {
|
||||
&gpu3DNull
|
||||
};
|
||||
|
||||
|
||||
u16 Keypad_Temp[NB_KEYS];
|
||||
|
||||
int Write_ConfigFile()
|
||||
|
|
Loading…
Reference in New Issue