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

sev- sev at scummvm.org
Mon May 11 06:32:14 UTC 2020


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:
ca25a95e2c 3DS: Remove extra dereferencing


Commit: ca25a95e2c6bf2674f85e41ad198f45a9dd80f31
    https://github.com/scummvm/scummvm/commit/ca25a95e2c6bf2674f85e41ad198f45a9dd80f31
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2020-05-11T08:31:36+02:00

Commit Message:
3DS: Remove extra dereferencing

Changed paths:
    backends/platform/3ds/osystem-events.cpp


diff --git a/backends/platform/3ds/osystem-events.cpp b/backends/platform/3ds/osystem-events.cpp
index c0a0f3b0c0..a36d4eef1d 100644
--- a/backends/platform/3ds/osystem-events.cpp
+++ b/backends/platform/3ds/osystem-events.cpp
@@ -444,11 +444,11 @@ void OSystem_3DS::runOptionsDialog() {
 
 	OptionsDialog dialog;
 	if (g_engine) {
-		osys->_sleepPauseToken = g_engine->pauseEngine();
+		_sleepPauseToken = g_engine->pauseEngine();
 	}
 	int result = dialog.runModal();
 	if (g_engine) {
-		osys->_sleepPauseToken.clear();
+		_sleepPauseToken.clear();
 	}
 
 	if (result > 0) {




More information about the Scummvm-git-logs mailing list