diff options
| -rw-r--r-- | sky/logic.cpp | 3 | ||||
| -rw-r--r-- | sky/sky.cpp | 1 |
2 files changed, 1 insertions, 3 deletions
diff --git a/sky/logic.cpp b/sky/logic.cpp index 30e03f18a5..22b95397a3 100644 --- a/sky/logic.cpp +++ b/sky/logic.cpp @@ -62,9 +62,6 @@ SkyLogic::SkyLogic(SkyDisk *skyDisk, SkyGrid *skyGrid) { void SkyLogic::engine() { Compact *compact2 = SkyState::fetchCompact(141); // logic list - printf("XXXXXXX: loading grids\n"); - _skyGrid->loadGrids(); - while (compact2->logic) { // 0 means end of list if (compact2->logic == 0xffff) { // Change logic data address diff --git a/sky/sky.cpp b/sky/sky.cpp index d6e3719bd8..de63dbab26 100644 --- a/sky/sky.cpp +++ b/sky/sky.cpp @@ -92,6 +92,7 @@ void SkyState::go() { if (!isDemo(_gameVersion) || isCDVersion(_gameVersion)) intro(); + _grid->loadGrids(); while (1) { delay(100); _skyLogic->engine(); |
