Skip to content

Commit 64a3f75

Browse files
committed
More formatting...
1 parent eec2451 commit 64a3f75

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

Source/Managers/AudioMan.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,6 @@ void AudioMan::Update() {
192192
}
193193

194194
status = status == FMOD_OK ? m_AudioSystem->update() : status;
195-
196195
if (status != FMOD_OK) {
197196
g_ConsoleMan.PrintString("ERROR: Could not update AudioMan due to FMOD error: " + std::string(FMOD_ErrorString(status)));
198197
}

Source/Managers/NetworkClient.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -691,7 +691,7 @@ void NetworkClient::ReceiveMusicEventsMsg(RakNet::Packet* packet) {
691691

692692
char buf[128];
693693
std::snprintf(buf, sizeof(buf), "MUSIC %s %d", path, musicDataPointer->LoopsOrSilence);
694-
694+
695695
break;
696696
case AudioMan::MUSIC_STOP:
697697
break;

Source/Menus/TitleScreen.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ void TitleScreen::Clear() {
4747

4848
m_ScrollOffset.Reset();
4949
m_PlanetViewScrollOffsetY = 325 + m_PlanetRadius - (static_cast<float>(g_WindowMan.GetResY()) / 2);
50-
50+
5151
m_FinishedPlayingIntro = false;
5252
m_IntroSequenceState = IntroSequence::DataRealmsLogoFadeIn;
5353
m_IntroSongTimer.Reset();

0 commit comments

Comments
 (0)