aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/dreamweb/people.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/dreamweb/people.cpp b/engines/dreamweb/people.cpp
index 4c7f9dd7a0..31229842a9 100644
--- a/engines/dreamweb/people.cpp
+++ b/engines/dreamweb/people.cpp
@@ -301,7 +301,7 @@ void DreamGenContext::rockstar(ReelRoutine &routine) {
nextReelPointer = 79;
}
} else {
- data.byte(kLastweapon) = -1;
+ data.byte(kLastweapon) = (uint8)-1;
nextReelPointer = 123;
}
}
@@ -368,7 +368,7 @@ void DreamGenContext::security(ReelRoutine &routine) {
if (data.byte(kLastweapon) == 1) {
data.word(kWatchingtime) = 10;
if ((data.byte(kManspath) == 9) && (data.byte(kFacing) == 0)) {
- data.byte(kLastweapon) = -1;
+ data.byte(kLastweapon) = (uint8)-1;
routine.incReelPointer();
}
}