[Scummvm-cvs-logs] scummvm master -> 39991ad4a56450f6c5c439cb5099eb0fcb972b54

sev- sev at scummvm.org
Sun Feb 14 23:06:51 CET 2016


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:
39991ad4a5 GCW0: Fix virtual keyboard


Commit: 39991ad4a56450f6c5c439cb5099eb0fcb972b54
    https://github.com/scummvm/scummvm/commit/39991ad4a56450f6c5c439cb5099eb0fcb972b54
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2016-02-14T23:06:11+01:00

Commit Message:
GCW0: Fix virtual keyboard

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



diff --git a/backends/events/dinguxsdl/dinguxsdl-events.cpp b/backends/events/dinguxsdl/dinguxsdl-events.cpp
index cc15f26..cb71304 100644
--- a/backends/events/dinguxsdl/dinguxsdl-events.cpp
+++ b/backends/events/dinguxsdl/dinguxsdl-events.cpp
@@ -176,6 +176,7 @@ bool DINGUXSdlEventSource::remapKey(SDL_Event &ev, Common::Event &event) {
 	} else if (ev.key.keysym.sym == BUT_SELECT) { // virtual keyboard
 #ifdef ENABLE_VKEYBD
 		event.type = Common::EVENT_VIRTUAL_KEYBOARD;
+		return true;
 #endif
 	} else if (ev.key.keysym.sym == BUT_START) { // F5, menu in some games
 		ev.key.keysym.sym = SDLK_F5;






More information about the Scummvm-git-logs mailing list