From 9f0de903d41273f43c84805a0f4e0d8c876a884f Mon Sep 17 00:00:00 2001 From: James King Date: Fri, 18 Mar 2022 14:55:35 +0100 Subject: [PATCH] Re-enabled ShowFloatingGamepadTextInput --- Facepunch.Steamworks/SteamUtils.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Facepunch.Steamworks/SteamUtils.cs b/Facepunch.Steamworks/SteamUtils.cs index 71444dc..dffd15f 100644 --- a/Facepunch.Steamworks/SteamUtils.cs +++ b/Facepunch.Steamworks/SteamUtils.cs @@ -292,9 +292,9 @@ namespace Steamworks /// public static void SetGameLauncherMode( bool mode ) => Internal.SetGameLauncherMode( mode ); - //public void ShowFloatingGamepadTextInput( TextInputMode mode, int left, int top, int width, int height ) - //{ - // Internal.ShowFloatingGamepadTextInput( mode, left, top, width, height ); - //} + public static void ShowFloatingGamepadTextInput( TextInputMode mode, int left, int top, int width, int height ) + { + Internal.ShowFloatingGamepadTextInput( mode, left, top, width, height ); + } } }