mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-02-18 01:21:32 +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)
|
bool HMISong::NoteOffQueue::Pop(AutoNoteOff &item)
|
||||||
{
|
{
|
||||||
item = (*this)[0];
|
item = (*this)[0];
|
||||||
if (TArray::Pop((*this)[0]))
|
if (TArray<AutoNoteOff>::Pop((*this)[0]))
|
||||||
{
|
{
|
||||||
Heapify();
|
Heapify();
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue