mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-28 06:53:40 +00:00
- Fixed: Trying to run with the same FMOD version you compiled with no longer produced
sound. (But compiling with 4.26.xx and using an older DLL was fine.) SVN r1718 (trunk)
This commit is contained in:
parent
f74f6a1659
commit
00a6293952
1 changed files with 1 additions and 1 deletions
|
@ -2695,7 +2695,7 @@ void FMODSoundRenderer::InitCreateSoundExInfo(FMOD_CREATESOUNDEXINFO *exinfo) co
|
|||
else
|
||||
#endif
|
||||
{
|
||||
exinfo->cbsize = sizeof(exinfo);
|
||||
exinfo->cbsize = sizeof(*exinfo);
|
||||
}
|
||||
memset((BYTE *)exinfo + sizeof(exinfo->cbsize), 0, exinfo->cbsize - sizeof(exinfo->cbsize));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue