From 64c6710765e211b9c6e43ba4b6b7195bd449575e Mon Sep 17 00:00:00 2001 From: leoCottret <71428793+leoCottret@users.noreply.github.com> Date: Fri, 4 Nov 2022 11:02:13 +0100 Subject: [PATCH] fix android build StopTextInput error --- src/string_editor_window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/string_editor_window.cpp b/src/string_editor_window.cpp index d90575793723..4d395e432161 100644 --- a/src/string_editor_window.cpp +++ b/src/string_editor_window.cpp @@ -363,7 +363,7 @@ std::pair string_editor_window::query_string() #if defined(__ANDROID__) on_out_of_scope stop_text_input( []() { if( get_option( "ANDROID_AUTO_KEYBOARD" ) ) { - StopTextInput(); + SDL_StopTextInput(); } } ); #endif