Rewinder.lua: Disable unused variables

This commit is contained in:
Кладовая 2025-03-12 22:44:12 +04:00 committed by GitHub
parent 85ceb44be8
commit cdc231c60a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -65,8 +65,8 @@ while (true) do
savestate.save(save);
saveArray[saveCount] = save;
end;
local HUDMATH = (math.ceil((100/saveMax)*rewindCount));--Making the rewind time a percentage.
local HUDTEXT = "REWIND POWER: ".. HUDMATH .."%";
--local HUDMATH = (math.ceil((100/saveMax)*rewindCount));--Making the rewind time a percentage.
--local HUDTEXT = "REWIND POWER: ".. HUDMATH .."%";
--gui.text(80,5,HUDTEXT);--Displaying the time onscreen.
FCEU.frameadvance();
end;