From e308d9cd476a9f8b8d1fd880a7a5253e17d15e2a Mon Sep 17 00:00:00 2001 From: "techdragon.nguyen@gmail.com" Date: Tue, 20 Dec 2011 00:00:00 +0000 Subject: [PATCH] fixed compilation error for android builds as referenced in forums. http://wololo.net/forum/viewtopic.php?f=16&t=3366 --- projects/mtg/src/GameOptions.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/mtg/src/GameOptions.cpp b/projects/mtg/src/GameOptions.cpp index ceb2b9146..352c876af 100644 --- a/projects/mtg/src/GameOptions.cpp +++ b/projects/mtg/src/GameOptions.cpp @@ -852,7 +852,7 @@ SimplePad * GameSettings::keypadStart(string input, string * _dest, bool _cancel engine->SendCommand( "displayKeyboard", input); #elif ANDROID JGE *engine = JGE::GetInstance(); - engine->SendCommand( "displayKeyboard:" << input); + engine->SendCommand( "displayKeyboard:" + input); #endif keypad->bShowCancel = _cancel; keypad->bShowNumpad = _numpad; @@ -1227,4 +1227,4 @@ bool GameOptionKeyBindings::write(std::ofstream* file, string name) *file << endl; return true; } -// MARK: - \ No newline at end of file +// MARK: -