Fix symbol names

This commit is contained in:
gamemasterplc 2024-01-01 23:01:06 -06:00
parent f9973ee134
commit b762b082a6
2 changed files with 4 additions and 4 deletions

View file

@ -104,7 +104,7 @@ void BoardCommonInit(VoidFunc create, VoidFunc destroy)
boardTurnStartFunc = NULL;
boardObjMan = omInitObjMan(64, 8192);
omSystemKeyCheckSetup(boardObjMan);
boardMainObj = omAddObjEx(boardObjMan, 0, 0, 0, 1, InitBoardFunc);
boardMainObj = omAddObjEx(boardObjMan, 0, 0, 0, -1, InitBoardFunc);
switch(omcurovl) {
case OVL_W01:
GWSystem.board = 0;