mirror of
https://github.com/SashLilac/cambridge.git
synced 2024-11-24 07:29:02 -06:00
Compare commits
2 Commits
4b456cf49c
...
5fa144f146
Author | SHA1 | Date | |
---|---|---|---|
|
5fa144f146 | ||
|
244e67074d |
@ -1 +1 @@
|
|||||||
version = "v0.3.3"
|
version = "v0.3.3.1"
|
@ -83,7 +83,7 @@ function ReplaySelectScene:render()
|
|||||||
-- Same graphic as mode select
|
-- Same graphic as mode select
|
||||||
--love.graphics.draw(misc_graphics["select_mode"], 20, 40)
|
--love.graphics.draw(misc_graphics["select_mode"], 20, 40)
|
||||||
|
|
||||||
love.graphics.setFont(font_3x5_4)
|
love.graphics.setFont(font_8x11)
|
||||||
love.graphics.print("SELECT REPLAY", 20, 35)
|
love.graphics.print("SELECT REPLAY", 20, 35)
|
||||||
|
|
||||||
if self.display_warning then
|
if self.display_warning then
|
||||||
|
@ -352,9 +352,13 @@ function Marathon2020Game:updateSectionTimes(old_level, new_level)
|
|||||||
table.insert(self.section_times, section_time)
|
table.insert(self.section_times, section_time)
|
||||||
self.section_start_time = self.frames
|
self.section_start_time = self.frames
|
||||||
|
|
||||||
if self.secondary_section_times[section] < cool_cutoffs[self.delay_level] and
|
if (
|
||||||
(section == 1 or self.secondary_section_times[section] <= self.secondary_section_times[section - 1] + 120) then
|
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)
|
sectionCool(section)
|
||||||
|
else
|
||||||
|
table.insert(self.section_status, "none")
|
||||||
end
|
end
|
||||||
|
|
||||||
if section > 5 then
|
if section > 5 then
|
||||||
|
Loading…
Reference in New Issue
Block a user