Skip to content

Commit

Permalink
SCI: Remove a leftover SCI32 hack
Browse files Browse the repository at this point in the history
  • Loading branch information
bluegr committed May 27, 2017
1 parent 57eda6a commit 03c1b33
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions engines/sci/graphics/cursor.cpp
Expand Up @@ -199,18 +199,6 @@ void GfxCursor::kernelSetView(GuiResourceId viewNum, int loopNum, int celNum, Co
if (_useOriginalKQ6WinCursors)
viewNum += 2000; // Windows cursors

if (g_sci->getGameId() == GID_PHANTASMAGORIA2) {
// HACK: Ignore cursor views for Phantasmagoria 2. They've got
// differences from other SCI32 views, thus we skip them for
// now, otherwise our view decoding code will crash.
// The view code will crash with *any* view in P2, but this hack
// allows the game to start and show the menu.
// TODO: Remove once the view code is updated to handle
// Phantasmagoria 2 views.
warning("TODO: Cursor views for Phantasmagoria 2");
return;
}

// Use the alternate silver cursors in SQ4 CD, if requested
if (_useSilverSQ4CDCursors) {
switch(viewNum) {
Expand Down

0 comments on commit 03c1b33

Please sign in to comment.