x64 version?
KiNGKiMO opened this issue · 2 comments
KiNGKiMO commented
Hello,
the dll isnt working with x64 games, I tried to build x64 but it didnt work "dinput8.exp : error LNK2001: unresolved external symbol _DirectInput8Create_hook@20"
hauzer commented
Change the third line in dinput8_nojoy.def
from
DirectInput8Create = _DirectInput8Create_hook@20 @1
to
DirectInput8Create = DirectInput8Create_hook @1
That should do the trick. I'm too lazy to fix this properly right now.
KiNGKiMO commented
Yep, that did it.
Thank you so much.