1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-01 18:43:33 +02:00

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;
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;
}
}