diff options
author | David Turner | 2011-02-02 23:22:45 +0000 |
---|---|---|
committer | David Turner | 2011-02-02 23:22:45 +0000 |
commit | 149082c9e98e80140d2c8143b918ddfca20cdf7e (patch) | |
tree | e5e4aa6c76acefac8f62486941a501ef84d6fac0 /backends/platform/n64 | |
parent | c62e50789064615d5663c4f0ba125127f0357cb9 (diff) | |
download | scummvm-rg350-149082c9e98e80140d2c8143b918ddfca20cdf7e.tar.gz scummvm-rg350-149082c9e98e80140d2c8143b918ddfca20cdf7e.tar.bz2 scummvm-rg350-149082c9e98e80140d2c8143b918ddfca20cdf7e.zip |
N64: Fix Signed to Unsigned Comparison GCC Warning.
svn-id: r55745
Diffstat (limited to 'backends/platform/n64')
-rw-r--r-- | backends/platform/n64/osys_n64.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/n64/osys_n64.h b/backends/platform/n64/osys_n64.h index 11f71f5783..f0dc6959c1 100644 --- a/backends/platform/n64/osys_n64.h +++ b/backends/platform/n64/osys_n64.h @@ -111,7 +111,7 @@ protected: bool _cursorPaletteDisabled; bool _dirtyPalette; - int _cursorWidth, _cursorHeight; + uint _cursorWidth, _cursorHeight; int _cursorKeycolor; uint16 _overlayHeight, _overlayWidth; |