diff options
| author | Willem Jan Palenstijn | 2011-06-04 17:49:01 +0200 |
|---|---|---|
| committer | Willem Jan Palenstijn | 2011-06-04 17:49:01 +0200 |
| commit | 7586b90e26e3444c2f31b79e549020214d8a6c6a (patch) | |
| tree | d07e98d167fd5a35c825541f7d930fc8bbce6daf /backends | |
| parent | 265e03c97583bd12fd299499b798c967c7d1ab9a (diff) | |
| download | scummvm-rg350-7586b90e26e3444c2f31b79e549020214d8a6c6a.tar.gz scummvm-rg350-7586b90e26e3444c2f31b79e549020214d8a6c6a.tar.bz2 scummvm-rg350-7586b90e26e3444c2f31b79e549020214d8a6c6a.zip | |
N64: Fix build error (typo)
Diffstat (limited to 'backends')
| -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 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; } |
