Make interpreter lib variables static
This commit is contained in:
parent
cb921fc9ba
commit
db9ce1071f
|
@ -77,27 +77,27 @@ static void opSetOneOptPause(Program* program);
|
||||||
static bool _intLibDoInput(int key);
|
static bool _intLibDoInput(int key);
|
||||||
|
|
||||||
// 0x59D5D0
|
// 0x59D5D0
|
||||||
Sound* gInterpreterSounds[INTERPRETER_SOUNDS_LENGTH];
|
static Sound* gInterpreterSounds[INTERPRETER_SOUNDS_LENGTH];
|
||||||
|
|
||||||
// 0x59D950
|
// 0x59D950
|
||||||
InterpreterKeyHandlerEntry gInterpreterKeyHandlerEntries[INTERPRETER_KEY_HANDLER_ENTRIES_LENGTH];
|
static InterpreterKeyHandlerEntry gInterpreterKeyHandlerEntries[INTERPRETER_KEY_HANDLER_ENTRIES_LENGTH];
|
||||||
|
|
||||||
// 0x59E154
|
// 0x59E154
|
||||||
int gIntepreterAnyKeyHandlerProc;
|
static int gIntepreterAnyKeyHandlerProc;
|
||||||
|
|
||||||
// Number of entries in _callbacks.
|
// Number of entries in _callbacks.
|
||||||
//
|
//
|
||||||
// 0x59E158
|
// 0x59E158
|
||||||
int _numCallbacks;
|
static int _numCallbacks;
|
||||||
|
|
||||||
// 0x59E15C
|
// 0x59E15C
|
||||||
Program* gInterpreterAnyKeyHandlerProgram;
|
static Program* gInterpreterAnyKeyHandlerProgram;
|
||||||
|
|
||||||
// 0x59E160
|
// 0x59E160
|
||||||
OFF_59E160* _callbacks;
|
static OFF_59E160* _callbacks;
|
||||||
|
|
||||||
// 0x59E164
|
// 0x59E164
|
||||||
int _sayStartingPosition;
|
static int _sayStartingPosition;
|
||||||
|
|
||||||
// format
|
// format
|
||||||
// 0x461850
|
// 0x461850
|
||||||
|
|
Loading…
Reference in New Issue