Compare commits

..

No commits in common. "5fa144f146c0a402cc9ffcaee4f0a5be55202984" and "4b456cf49c55cf52037ad51c616ce26ffc5edd9a" have entirely different histories.

3 changed files with 4 additions and 8 deletions

View File

@ -1 +1 @@
version = "v0.3.3.1"
version = "v0.3.3"

View File

@ -83,7 +83,7 @@ function ReplaySelectScene:render()
-- Same graphic as mode select
--love.graphics.draw(misc_graphics["select_mode"], 20, 40)
love.graphics.setFont(font_8x11)
love.graphics.setFont(font_3x5_4)
love.graphics.print("SELECT REPLAY", 20, 35)
if self.display_warning then

View File

@ -352,13 +352,9 @@ function Marathon2020Game:updateSectionTimes(old_level, new_level)
table.insert(self.section_times, section_time)
self.section_start_time = self.frames
if (
self.secondary_section_times[section] < cool_cutoffs[self.delay_level] and
section == 1 or self.secondary_section_times[section] <= self.secondary_section_times[section - 1] + 120
) then
if self.secondary_section_times[section] < cool_cutoffs[self.delay_level] and
(section == 1 or self.secondary_section_times[section] <= self.secondary_section_times[section - 1] + 120) then
sectionCool(section)
else
table.insert(self.section_status, "none")
end
if section > 5 then