diff options
-rw-r--r-- | src/fxemu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fxemu.c b/src/fxemu.c index fc2cc9c..a6af324 100644 --- a/src/fxemu.c +++ b/src/fxemu.c @@ -95,7 +95,7 @@ #include <stdio.h>
/* The FxChip Emulator's internal variables */
-FxRegs_s GSU = FxRegs_s_null;
+FxRegs_s GSU; /* This will be initialized when loading a ROM */
uint32(**fx_ppfFunctionTable)(uint32) = 0;
void (**fx_ppfPlotTable)() = 0;
|