- Applied Chris's patch to fix hmi compilation error on Linux.

SVN r2689 (trunk)
This commit is contained in:
Braden Obrzut 2010-09-04 18:21:51 +00:00
parent 61d438e1eb
commit 3dbf807345

View file

@ -717,7 +717,7 @@ void HMISong::NoteOffQueue::AddNoteOff(DWORD delay, BYTE channel, BYTE key)
bool HMISong::NoteOffQueue::Pop(AutoNoteOff &item)
{
item = (*this)[0];
if (TArray::Pop((*this)[0]))
if (TArray<AutoNoteOff>::Pop((*this)[0]))
{
Heapify();
return true;