From b92a7647a2f9afff93537ffdd5ba0d094a7550f2 Mon Sep 17 00:00:00 2001 From: DepressedTWM Date: Mon, 18 May 2026 10:32:43 +0400 Subject: [PATCH] 16:9 support for Debug Menu --- scripts/Window_DebugLeft.rb | 2 +- scripts/Window_MainMenu.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/Window_DebugLeft.rb b/scripts/Window_DebugLeft.rb index 21fa968..7800481 100644 --- a/scripts/Window_DebugLeft.rb +++ b/scripts/Window_DebugLeft.rb @@ -9,7 +9,7 @@ class Window_DebugLeft < Window_Selectable # * Object Initialization #-------------------------------------------------------------------------- def initialize - super(0, 0, 192, 480) + super(0, 0, 192, Graphics.height) self.index = 0 refresh end diff --git a/scripts/Window_MainMenu.rb b/scripts/Window_MainMenu.rb index 16d8de8..836d26b 100644 --- a/scripts/Window_MainMenu.rb +++ b/scripts/Window_MainMenu.rb @@ -10,7 +10,7 @@ class Window_MainMenu < Window_Selectable @commands << 'Settings' if Window_Settings.DebugIsEnabled == true - @commands << 'TPtLOC' + @commands << 'TPtL' end @item_max = @commands.size