[Scummvm-git-logs] scummvm master -> f3cb1fcd84d7ca1dd25b7adb4b54f08c535008ac

bluegr bluegr at gmail.com
Sun Aug 26 01:31:09 CEST 2018


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:
f3cb1fcd84 SCI: Fix compilation when SCI32 is disabled


Commit: f3cb1fcd84d7ca1dd25b7adb4b54f08c535008ac
    https://github.com/scummvm/scummvm/commit/f3cb1fcd84d7ca1dd25b7adb4b54f08c535008ac
Author: Filippos Karapetis (bluegr at gmail.com)
Date: 2018-08-26T02:30:29+03:00

Commit Message:
SCI: Fix compilation when SCI32 is disabled

Changed paths:
    engines/sci/engine/kpathing.cpp


diff --git a/engines/sci/engine/kpathing.cpp b/engines/sci/engine/kpathing.cpp
index fc0d24f..3d5ef47 100644
--- a/engines/sci/engine/kpathing.cpp
+++ b/engines/sci/engine/kpathing.cpp
@@ -1581,8 +1581,10 @@ reg_t kAvoidPath(EngineState *s, int argc, reg_t *argv) {
 			if (getSciVersion() <= SCI_VERSION_1_1) {
 				g_sci->_gfxScreen->copyToScreen();
 				g_system->updateScreen();
+#ifdef ENABLE_SCI32
 			} else {
 				g_sci->_gfxFrameout->kernelFrameOut(true);
+#endif
 			}
 		}
 





More information about the Scummvm-git-logs mailing list