mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-01-09 10:29:45 +01:00
Remove extraneous semicolon from MusicTrack::MusicTrack()
I don't know how that got there...
This commit is contained in:
parent
5fe3b9d0de
commit
170e93054a
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue