mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 23:02:08 +00:00
- Applied Chris's patch to fix hmi compilation error on Linux.
SVN r2689 (trunk)
This commit is contained in:
parent
61d438e1eb
commit
3dbf807345
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue