[Scummvm-cvs-logs] scummvm master -> ea325909cf1a2652e75c707395199ff4276e40ba

tsoliman tarek at bashasoliman.com
Wed Feb 15 19:41:37 CET 2012


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:
ea325909cf MAEMO: Fix wrong assert


Commit: ea325909cf1a2652e75c707395199ff4276e40ba
    https://github.com/scummvm/scummvm/commit/ea325909cf1a2652e75c707395199ff4276e40ba
Author: Tarek Soliman (tsoliman at scummvm.org)
Date: 2012-02-15T10:40:49-08:00

Commit Message:
MAEMO: Fix wrong assert

Changed paths:
    backends/events/maemosdl/maemosdl-events.cpp



diff --git a/backends/events/maemosdl/maemosdl-events.cpp b/backends/events/maemosdl/maemosdl-events.cpp
index c01f175..756125a 100644
--- a/backends/events/maemosdl/maemosdl-events.cpp
+++ b/backends/events/maemosdl/maemosdl-events.cpp
@@ -165,7 +165,7 @@ bool MaemoSdlEventSource::toggleClickMode() {
 }
 
 MaemoSdlEventObserver::MaemoSdlEventObserver(MaemoSdlEventSource *eventSource) {
-	assert(_eventSource);
+	assert(eventSource);
 	_eventSource = eventSource;
 }
 






More information about the Scummvm-git-logs mailing list