[Scummvm-cvs-logs] scummvm master -> 7586b90e26e3444c2f31b79e549020214d8a6c6a

wjp wjp at usecode.org
Sat Jun 4 17:51:34 CEST 2011


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
7586b90e26 N64: Fix build error (typo)


Commit: 7586b90e26e3444c2f31b79e549020214d8a6c6a
    https://github.com/scummvm/scummvm/commit/7586b90e26e3444c2f31b79e549020214d8a6c6a
Author: Willem Jan Palenstijn (wjp at usecode.org)
Date: 2011-06-04T08:49:01-07:00

Commit Message:
N64: Fix build error (typo)

Changed paths:
    backends/platform/n64/osys_n64_base.cpp



diff --git a/backends/platform/n64/osys_n64_base.cpp b/backends/platform/n64/osys_n64_base.cpp
index ba2aa20..facdc23 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;
 }
 






More information about the Scummvm-git-logs mailing list