mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
- oops, this somehow lost the shift operator...
This commit is contained in:
parent
3c40d71c20
commit
c88ed426a8
1 changed files with 1 additions and 1 deletions
|
@ -233,7 +233,7 @@ void MUSSong2::Precache()
|
|||
{
|
||||
for (int b = 0; b < numbanks; b++)
|
||||
{
|
||||
work[j++] = val | used[k++];
|
||||
work[j++] = val | (used[k++] << 7);
|
||||
}
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue