Skip to content

Commit

Permalink
HOPKINS: Convert route lists into structs
Browse files Browse the repository at this point in the history
  • Loading branch information
wjp committed Feb 16, 2013
1 parent 84e290e commit cccbd84
Show file tree
Hide file tree
Showing 5 changed files with 309 additions and 479 deletions.
4 changes: 2 additions & 2 deletions engines/hopkins/hopkins.cpp
Expand Up @@ -2050,7 +2050,7 @@ void HopkinsEngine::playEnding() {
_globals._cityMapEnabledFl = false;
_globals.iRegul = 1;
_soundManager.WSOUND(26);
_linesManager._route = (int16 *)g_PTRNUL;
_linesManager._route = (RouteItem *)g_PTRNUL;
_globals.NOMARCHE = true;
_globals._exitId = 0;
_soundManager.loadSample(1, "SOUND90.WAV");
Expand Down Expand Up @@ -2777,7 +2777,7 @@ void HopkinsEngine::OCEAN(int16 curExitId, Common::String backgroundFilename, in
_graphicsManager.SETCOLOR3(251, 100, 100, 100);
_graphicsManager.SETCOLOR3(254, 0, 0, 0);
_objectsManager.animateSprite(0);
_linesManager._route = (int16 *)g_PTRNUL;
_linesManager._route = (RouteItem *)g_PTRNUL;
_eventsManager.mouseOn();
_eventsManager.changeMouseCursor(4);

Expand Down

0 comments on commit cccbd84

Please sign in to comment.