Remove extraneous semicolon from MusicTrack::MusicTrack()

I don't know how that got there...
This commit is contained in:
Misa
2020-06-30 17:57:22 -07:00
committed by Ethan Lee
parent 5fe3b9d0de
commit 170e93054a

View File

@@ -8,7 +8,7 @@ MusicTrack::MusicTrack(const char* fileName)
m_isValid = true; m_isValid = true;
if(m_music == NULL) if(m_music == NULL)
{ {
fprintf(stderr, "Unable to load Ogg Music file: %s\n", Mix_GetError());; fprintf(stderr, "Unable to load Ogg Music file: %s\n", Mix_GetError());
m_isValid = false; m_isValid = false;
} }
} }