[Scummvm-git-logs] scummvm master -> b76576abd4888accb671452a3ce649801e85b75c
bluegr
bluegr at gmail.com
Sat Dec 19 21:23:23 UTC 2020
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
b76576abd4 STARTREK: Specify that action is signed char
Commit: b76576abd4888accb671452a3ce649801e85b75c
https://github.com/scummvm/scummvm/commit/b76576abd4888accb671452a3ce649801e85b75c
Author: Vladimir Serbinenko (phcoder at google.com)
Date: 2020-12-19T23:23:19+02:00
Commit Message:
STARTREK: Specify that action is signed char
x86 uses signed chars but this is architecture-dependent and on arm it's
unsigned and leads to compilation failure
Changed paths:
engines/startrek/action.h
diff --git a/engines/startrek/action.h b/engines/startrek/action.h
index a550ee42c6..628afd9d30 100644
--- a/engines/startrek/action.h
+++ b/engines/startrek/action.h
@@ -56,7 +56,7 @@ enum ActionTypes {
};
struct Action {
- char type;
+ signed char type;
byte b1;
byte b2;
byte b3;
More information about the Scummvm-git-logs
mailing list