Skip to content

Commit

Permalink
STARTREK: Fix MSVC Signed vs. Unsigned Byte Warning
Browse files Browse the repository at this point in the history
  • Loading branch information
digitall committed Sep 30, 2019
1 parent 460c192 commit d68ab5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/startrek/awaymission.cpp
Expand Up @@ -602,7 +602,7 @@ void StarTrekEngine::handleAwayMissionAction() {
break;

case OBJECT_ICOMM:
if (!_room->handleAction(ACTION_USE, OBJECT_ICOMM, -1, 0))
if (!_room->handleAction(ACTION_USE, OBJECT_ICOMM, 0xff, 0))
showTextbox("Lt. Uhura", getLoadedText(GROUNDTX_USE_COMMUNICATOR), 20, 20, TEXTCOLOR_RED, 0);
break;

Expand Down

0 comments on commit d68ab5e

Please sign in to comment.