GOB: yet more int16->uint16 changes, to accommodate for Playtoons/Adibou2 larger variable space

This makes the Playtoons-like minigame in Adibou2 playable (with glitches).
This commit is contained in:
Simon Delamarre 2022-10-29 00:43:39 +02:00 committed by Eugene Sandulenko
parent 962e9f9386
commit 97a66c329e
No known key found for this signature in database
GPG key ID: 014D387312D34F08
8 changed files with 15 additions and 15 deletions

View file

@ -261,7 +261,7 @@ char *Script::peekString(int32 offset) {
return (char *)(_totPtr + offset);
}
int16 Script::readVarIndex(uint16 *size, uint16 *type) {
uint16 Script::readVarIndex(uint16 *size, uint16 *type) {
return _expression->parseVarIndex(size, type);
}