diff options
author | D G Turner | 2012-11-23 18:37:07 +0000 |
---|---|---|
committer | D G Turner | 2012-11-23 18:37:07 +0000 |
commit | 21a8166922fb7e2b04734199944bb059a322e3b2 (patch) | |
tree | 7521fc2d402974544ea281f68436c802499424e0 | |
parent | ae1403713cdccd98a9bab656db74fc6172c82cbb (diff) | |
download | scummvm-rg350-21a8166922fb7e2b04734199944bb059a322e3b2.tar.gz scummvm-rg350-21a8166922fb7e2b04734199944bb059a322e3b2.tar.bz2 scummvm-rg350-21a8166922fb7e2b04734199944bb059a322e3b2.zip |
N64: Remove remaining signed-unsigned compiler warning.
-rw-r--r-- | backends/platform/n64/osys_n64_base.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/n64/osys_n64_base.cpp b/backends/platform/n64/osys_n64_base.cpp index 7a702297e2..1e2aca9e51 100644 --- a/backends/platform/n64/osys_n64_base.cpp +++ b/backends/platform/n64/osys_n64_base.cpp @@ -725,7 +725,7 @@ void OSystem_N64::copyRectToOverlay(const void *buf, int pitch, int x, int y, in uint16 *dst = _overlayBuffer + (y * _overlayWidth + x); - if (_overlayWidth == w && pitch == _overlayWidth * sizeof(uint16)) { + if (_overlayWidth == (uint16)w && (uint16)pitch == _overlayWidth * sizeof(uint16)) { memcpy(dst, src, h * pitch); } else { do { |