Added gpu3DNull to allow compile.

This commit is contained in:
masscat 2007-03-17 12:38:31 +00:00
parent db6af5a6a6
commit c6f7337e78
3 changed files with 16 additions and 0 deletions

View File

@ -33,6 +33,7 @@
#include "../debug.h" #include "../debug.h"
#include "../sndsdl.h" #include "../sndsdl.h"
#include "../ctrlssdl.h" #include "../ctrlssdl.h"
#include "../render3D.h"
volatile BOOL execute = FALSE; volatile BOOL execute = FALSE;
@ -45,6 +46,11 @@ SoundInterface_struct *SNDCoreList[] = {
NULL NULL
}; };
GPU3DInterface *core3DList[] = {
&gpu3DNull
};
/* Our keyboard config is different because of the directional keys */ /* Our keyboard config is different because of the directional keys */
const u16 cli_kb_cfg[NB_KEYS] = const u16 cli_kb_cfg[NB_KEYS] =
{ SDLK_c, // A { SDLK_c, // A

View File

@ -36,6 +36,11 @@ SoundInterface_struct *SNDCoreList[] = {
NULL NULL
}; };
GPU3DInterface *core3DList[] = {
&gpu3DNull
};
/* ***** ***** TOOLS ***** ***** */ /* ***** ***** TOOLS ***** ***** */
GList * tools_to_update = NULL; GList * tools_to_update = NULL;

View File

@ -60,6 +60,11 @@ SoundInterface_struct *SNDCoreList[] = {
NULL NULL
}; };
GPU3DInterface *core3DList[] = {
&gpu3DNull
};
u16 Keypad_Temp[NB_KEYS]; u16 Keypad_Temp[NB_KEYS];
int Write_ConfigFile() int Write_ConfigFile()