mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 15:22:15 +00:00
Merge branch 'fix_acs_big_endian' of https://github.com/alexey-lysiuk/gzdoom
This commit is contained in:
commit
88ff33c26e
1 changed files with 1 additions and 1 deletions
|
@ -7296,7 +7296,7 @@ scriptwait:
|
|||
while (min <= max)
|
||||
{
|
||||
int mid = (min + max) / 2;
|
||||
SDWORD caseval = pc[mid*2];
|
||||
SDWORD caseval = LittleLong(pc[mid*2]);
|
||||
if (caseval == STACK(1))
|
||||
{
|
||||
pc = activeBehavior->Ofs2PC (LittleLong(pc[mid*2+1]));
|
||||
|
|
Loading…
Reference in a new issue