diff options
author | Fabio Battaglia | 2011-02-16 09:51:32 +0100 |
---|---|---|
committer | Fabio Battaglia | 2011-02-16 09:51:32 +0100 |
commit | 68e468ee01b243e31b154a7fab42396c9b24e5f0 (patch) | |
tree | 74dbd06367c311cedbca76bc22afc307e1e3a3b4 /backends | |
parent | 12fd50929533a5ba1ea26ccc1e5de0b5c3f83f50 (diff) | |
download | scummvm-rg350-68e468ee01b243e31b154a7fab42396c9b24e5f0.tar.gz scummvm-rg350-68e468ee01b243e31b154a7fab42396c9b24e5f0.tar.bz2 scummvm-rg350-68e468ee01b243e31b154a7fab42396c9b24e5f0.zip |
N64: revert fix in svn r55745 and added a FIXME
The sign comparison fix requires a little more work than int->uint change, else it
throws an exception on the N64
Diffstat (limited to 'backends')
-rw-r--r-- | backends/platform/n64/osys_n64.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/backends/platform/n64/osys_n64.h b/backends/platform/n64/osys_n64.h index 5264a8a82e..e5ffc7f3bc 100644 --- a/backends/platform/n64/osys_n64.h +++ b/backends/platform/n64/osys_n64.h @@ -111,7 +111,10 @@ protected: bool _cursorPaletteDisabled; bool _dirtyPalette; - uint _cursorWidth, _cursorHeight; + // FIXME: This must be left as "int" for now, to fix the sign-comparison problem + // there is a little more work involved than an int->uint change + int _cursorWidth, _cursorHeight; + int _cursorKeycolor; uint16 _overlayHeight, _overlayWidth; |