mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-01-24 17:54:59 +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;
|
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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue