From 634574f249398fb6b398b4aae7e7152fc80fcfc9 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Mon, 6 Feb 2023 00:29:14 +0300 Subject: [PATCH] engine: platform: sdl: don't enable text mode with cursor??? --- engine/platform/sdl/in_sdl.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/engine/platform/sdl/in_sdl.c b/engine/platform/sdl/in_sdl.c index 3957b2e9..0603a421 100644 --- a/engine/platform/sdl/in_sdl.c +++ b/engine/platform/sdl/in_sdl.c @@ -343,12 +343,10 @@ void Platform_SetCursorType( VGUI_DefaultCursor type ) { SDL_SetCursor( cursors.cursors[type] ); SDL_ShowCursor( true ); - Key_EnableTextInput( true, false ); } else { SDL_ShowCursor( false ); - Key_EnableTextInput( false, false ); } #else if( host.mouse_visible )