diff --git a/desmume/src/cli/main.c b/desmume/src/cli/main.c index bf9ac9f96..d2214d044 100644 --- a/desmume/src/cli/main.c +++ b/desmume/src/cli/main.c @@ -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 diff --git a/desmume/src/gtk-glade/main.c b/desmume/src/gtk-glade/main.c index 7be5139f4..d453a20bd 100755 --- a/desmume/src/gtk-glade/main.c +++ b/desmume/src/gtk-glade/main.c @@ -36,6 +36,11 @@ SoundInterface_struct *SNDCoreList[] = { NULL }; +GPU3DInterface *core3DList[] = { +&gpu3DNull +}; + + /* ***** ***** TOOLS ***** ***** */ GList * tools_to_update = NULL; diff --git a/desmume/src/gtk/main.c b/desmume/src/gtk/main.c index f3a1f0528..f6962c68d 100644 --- a/desmume/src/gtk/main.c +++ b/desmume/src/gtk/main.c @@ -60,6 +60,11 @@ SoundInterface_struct *SNDCoreList[] = { NULL }; +GPU3DInterface *core3DList[] = { +&gpu3DNull +}; + + u16 Keypad_Temp[NB_KEYS]; int Write_ConfigFile()