mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-27 09:20:51 +00:00
- fixed startup and sound issues with Redneck Rampage.
This commit is contained in:
parent
63d4fc1e1b
commit
395ba5541c
2 changed files with 2 additions and 2 deletions
|
@ -124,7 +124,7 @@ enum
|
|||
GAMEFLAG_DUKEBETA = 0x00000060, // includes 0x20 since it's a shareware beta
|
||||
GAMEFLAG_FURY = 0x00000080,
|
||||
GAMEFLAG_RR = 0x00000100,
|
||||
GAMEFLAG_RRRA = 0x00000300,
|
||||
GAMEFLAG_RRRA = 0x00000200,
|
||||
GAMEFLAG_BLOOD = 0x00000400,
|
||||
GAMEFLAG_SW = 0x00000800,
|
||||
GAMEFLAG_STANDALONE = 0x00001000,
|
||||
|
|
|
@ -441,7 +441,7 @@ int32_t S_LoadSound(int num)
|
|||
return 0;
|
||||
}
|
||||
|
||||
int32_t l = fp.Tell();
|
||||
int32_t l = fp.GetLength();
|
||||
g_soundlocks[num] = 200;
|
||||
snd.siz = l;
|
||||
cacheAllocateBlock((intptr_t *)&snd.ptr, l, &g_soundlocks[num]);
|
||||
|
|
Loading…
Reference in a new issue