From c2e58b59a9ccd8986b79e6e7a1e6b7570eb49513 Mon Sep 17 00:00:00 2001 From: Hanicef Date: Sun, 12 May 2024 19:54:14 +0200 Subject: [PATCH] Fix other builds --- src/dedicated/i_system.c | 10 ++++++++++ src/dummy/i_system.c | 10 ++++++++++ 2 files changed, 20 insertions(+) diff --git a/src/dedicated/i_system.c b/src/dedicated/i_system.c index 858dfaf20..413b366b8 100644 --- a/src/dedicated/i_system.c +++ b/src/dedicated/i_system.c @@ -1585,5 +1585,15 @@ void I_GetCursorPosition(INT32 *x, INT32 *y) (void)y; } +void I_SetTextInputMode(boolean active) +{ + (void)active; +} + +boolean I_GetTextInputMode(void) +{ + return false; +} + #include "../sdl/dosstr.c" diff --git a/src/dummy/i_system.c b/src/dummy/i_system.c index ecabe3576..99bfa9f36 100644 --- a/src/dummy/i_system.c +++ b/src/dummy/i_system.c @@ -211,5 +211,15 @@ const char *I_GetSysName(void) return NULL; } +void I_SetTextInputMode(boolean active) +{ + (void)active; +} + +boolean I_GetTextInputMode(void) +{ + return false; +} + #include "../sdl/dosstr.c"