mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 14:52:01 +00:00
- relaxed consistency checks for VOC files.
Rampage Warrior contains a few sounds that failed validation so this check does not exist in the original 3D Realms sound code.
This commit is contained in:
parent
6576adb80b
commit
a614f741fd
1 changed files with 1 additions and 1 deletions
|
@ -367,7 +367,7 @@ SoundHandle SoundRenderer::LoadSoundVoc(uint8_t *sfxdata, int length)
|
|||
i += 4;
|
||||
if (i + blocksize > length)
|
||||
{
|
||||
okay = false;
|
||||
//okay = false;
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue