We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4ae3df commit f4dced8Copy full SHA for f4dced8
src/modes/cutscene_world.cpp
@@ -56,7 +56,8 @@ CutsceneWorld::CutsceneWorld() : World()
56
{
57
m_time_at_second_reset = 0.0f;
58
m_aborted = false;
59
- WorldStatus::setClockMode(CLOCK_NONE);
+ WorldStatus::setClockMode(CLOCK_CHRONO);
60
+ m_phase = RACE_PHASE;
61
m_use_highscores = false;
62
m_play_track_intro_sound = false;
63
m_play_ready_set_go_sounds = false;
src/modes/world_status.hpp
@@ -112,9 +112,9 @@ class WorldStatus
112
protected:
113
bool m_play_track_intro_sound;
114
bool m_play_ready_set_go_sounds;
115
+ Phase m_phase;
116
117
private:
- Phase m_phase;
118
119
/**
120
* Remember previous phase e.g. on pause
0 commit comments