Replies: 1 comment 1 reply
-
|
Hi, |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
In the XAudio2.inc file, the name of the DLL for 64 bit Windows 10 is as follow:
{$IFDEF _WIN64_WINNT_WIN10}
XAUDIO2_DLL_A = 'xaudio2_9d.dll';
XAUDIO2_DLL_W = 'xaudio2_9d.dll';
X3DAUDIO_DLL = 'x3daudio1_0.dll';
{$ENDIF}
That is the debug build naming and will not work if I compile in 64 bit. Unless other ifdefs for debug are put in place, this should be the same as for 32 bit, ie: xaudio2_9.dll
Am I wrong on this?
thanks :)
Beta Was this translation helpful? Give feedback.
All reactions