aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/n64/osys_n64.h
diff options
context:
space:
mode:
authorD G Turner2012-11-18 21:19:17 +0000
committerD G Turner2012-11-18 22:34:15 +0000
commitd8a17a9d91da3d31d7d3a454e010a4fb5b2100ff (patch)
tree563aa2cf53cb013ded75c751d04f2194882f9e55 /backends/platform/n64/osys_n64.h
parent46027e5303de8cd102f06a07572dd5fbf02c44e6 (diff)
downloadscummvm-rg350-d8a17a9d91da3d31d7d3a454e010a4fb5b2100ff.tar.gz
scummvm-rg350-d8a17a9d91da3d31d7d3a454e010a4fb5b2100ff.tar.bz2
scummvm-rg350-d8a17a9d91da3d31d7d3a454e010a4fb5b2100ff.zip
N64: Fix compiler warnings associated with cursor size variables.
Diffstat (limited to 'backends/platform/n64/osys_n64.h')
-rw-r--r--backends/platform/n64/osys_n64.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/backends/platform/n64/osys_n64.h b/backends/platform/n64/osys_n64.h
index 249f72d8fc..bc6b3cb1a5 100644
--- a/backends/platform/n64/osys_n64.h
+++ b/backends/platform/n64/osys_n64.h
@@ -104,9 +104,7 @@ protected:
bool _cursorPaletteDisabled;
bool _dirtyPalette;
- // 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;
+ uint _cursorWidth, _cursorHeight;
int _cursorKeycolor;