From 3c07616fa81439a23106fb8b89cf59340463ec72 Mon Sep 17 00:00:00 2001 From: Skalfate Date: Thu, 15 Jan 2026 08:52:20 -0700 Subject: [PATCH] Fixed some typos --- client/src/main/java/rt4/client.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/client/src/main/java/rt4/client.java b/client/src/main/java/rt4/client.java index 99fa8b2..3f897c5 100644 --- a/client/src/main/java/rt4/client.java +++ b/client/src/main/java/rt4/client.java @@ -841,10 +841,10 @@ public final class client extends GameShell { } } /** - * If the game is running fine and is in fullscreen mode and a user wants to leave the mode then - * this will reset the window to Standard mode and exist fullscreen. - * This line can also launch back into full screen when out of focus and refocused by mode 3 - * with the right width and height, by Preference.width and Preference.height. + * If the game is running in fullscreen mode and focus is lost, by alt tab or ctrl alt tab, the client exits + * fullscreen mode and enters window mode. + * This line can also be used to launch back into full screen when out of focus and refocused by sending mode 3 + * with the right width and height, by Preference.width and Preference.height for exmaple. */ if (GameShell.fullScreenFrame != null && !GameShell.focus && (gameState == 30 || gameState == 10)) { DisplayMode.setWindowMode(false, Preferences.favoriteWorlds, -1, -1);