From 231d5ae48934135b2559a7728c15669439f51185 Mon Sep 17 00:00:00 2001 From: GIR Date: Sat, 3 Dec 2022 23:34:42 -0800 Subject: [PATCH] -removing unnecessary vars --- scripts/Scene_Map.rb | 3 --- 1 file changed, 3 deletions(-) diff --git a/scripts/Scene_Map.rb b/scripts/Scene_Map.rb index 94e5a8b..de10545 100644 --- a/scripts/Scene_Map.rb +++ b/scripts/Scene_Map.rb @@ -110,9 +110,6 @@ class Scene_Map millisec = ((Graphics.frame_count * 1000) / Graphics.frame_rate) % 1000 time_string = sprintf("%02d:%02d:%02d.%03d", hour, min, sec, millisec) - igt_seconds = (Graphics.frame_count / 60) % 60 - igt_minutes = (Graphics.frame_count / (60 * 60)) % 60 - igt_hours = Graphics.frame_count / (60 * 60 * 60) @in_game_timer.bitmap.fill_rect(0, 0, 140, 30, Color.new(0, 0, 0, 128)) @in_game_timer.bitmap.draw_text(8, 0, 132, 30, time_string) end