Skip to content

Commit f4dced8

Browse files
committed
A few steps forward for issue supertuxkart#3345, more issues remain
1 parent c4ae3df commit f4dced8

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/modes/cutscene_world.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ CutsceneWorld::CutsceneWorld() : World()
5656
{
5757
m_time_at_second_reset = 0.0f;
5858
m_aborted = false;
59-
WorldStatus::setClockMode(CLOCK_NONE);
59+
WorldStatus::setClockMode(CLOCK_CHRONO);
60+
m_phase = RACE_PHASE;
6061
m_use_highscores = false;
6162
m_play_track_intro_sound = false;
6263
m_play_ready_set_go_sounds = false;

src/modes/world_status.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,9 @@ class WorldStatus
112112
protected:
113113
bool m_play_track_intro_sound;
114114
bool m_play_ready_set_go_sounds;
115+
Phase m_phase;
115116

116117
private:
117-
Phase m_phase;
118118

119119
/**
120120
* Remember previous phase e.g. on pause

0 commit comments

Comments
 (0)