Skip to content

Commit

Permalink
Fixed a compiler warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed May 11, 2017
1 parent a581dcb commit e5790e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mojozork.c
Expand Up @@ -945,7 +945,7 @@ static uintptr print_zscii(const uint8 *_str, const int abbr)
if ((ch == 6) && (alphabet == 2))
zscii_collector = 2;
else
printVal = GAlphabetTable[(alphabet*26) + (ch-6)]; break;
printVal = GAlphabetTable[(alphabet*26) + (ch-6)];
break;
} // switch

Expand Down

0 comments on commit e5790e0

Please sign in to comment.