[Scummvm-git-logs] scummvm master -> 3f683dafa882fb4df32e9d8504c35ffbe6e9eb6b
sev-
sev at scummvm.org
Sun Jan 26 19:22:06 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:
3f683dafa8 DIRECTOR: LINGO: Attempt to fix compilation
Commit: 3f683dafa882fb4df32e9d8504c35ffbe6e9eb6b
https://github.com/scummvm/scummvm/commit/3f683dafa882fb4df32e9d8504c35ffbe6e9eb6b
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2020-01-26T20:21:46+01:00
Commit Message:
DIRECTOR: LINGO: Attempt to fix compilation
Changed paths:
engines/director/lingo/lingo-bytecode.cpp
diff --git a/engines/director/lingo/lingo-bytecode.cpp b/engines/director/lingo/lingo-bytecode.cpp
index 3b4ae1e..e27d093 100644
--- a/engines/director/lingo/lingo-bytecode.cpp
+++ b/engines/director/lingo/lingo-bytecode.cpp
@@ -713,7 +713,7 @@ void Lingo::addCodeV4(Common::SeekableSubReadStreamEndian &stream, ScriptType ty
uint64 f64sign = (uint64)(exponent & 0x8000) << 48;
exponent &= 0x7fff;
uint64 fraction = READ_BE_UINT64(&constsStore[pointer+2]);
- fraction &= 0x7fffffffffffffff;
+ fraction &= 0x7fffffffffffffffULL;
uint64 f64exp = 0;
if (exponent == 0) {
f64exp = 0;
More information about the Scummvm-git-logs
mailing list