aboutsummaryrefslogtreecommitdiff
path: root/backends/platform
diff options
context:
space:
mode:
authorWillem Jan Palenstijn2011-06-04 17:49:01 +0200
committerWillem Jan Palenstijn2011-06-04 17:49:01 +0200
commit7586b90e26e3444c2f31b79e549020214d8a6c6a (patch)
treed07e98d167fd5a35c825541f7d930fc8bbce6daf /backends/platform
parent265e03c97583bd12fd299499b798c967c7d1ab9a (diff)
downloadscummvm-rg350-7586b90e26e3444c2f31b79e549020214d8a6c6a.tar.gz
scummvm-rg350-7586b90e26e3444c2f31b79e549020214d8a6c6a.tar.bz2
scummvm-rg350-7586b90e26e3444c2f31b79e549020214d8a6c6a.zip
N64: Fix build error (typo)
Diffstat (limited to 'backends/platform')
-rw-r--r--backends/platform/n64/osys_n64_base.cpp2
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 ba2aa2090e..facdc23d99 100644
--- a/backends/platform/n64/osys_n64_base.cpp
+++ b/backends/platform/n64/osys_n64_base.cpp
@@ -215,7 +215,7 @@ void OSystem_N64::setFeatureState(Feature f, bool enable) {
bool OSystem_N64::getFeatureState(Feature f) {
if (f == kFeatureCursorPalette)
- return !_cursorPaletteDisabled
+ return !_cursorPaletteDisabled;
return false;
}