Closed Jyouya closed 1 year ago
Ashita Version (Type /ashita in-game to get this.) 4.0.0.6
FFXI Version (Type /version in-game to get this.) unknown
Windows Version (ie. Start > About Your PC) 19044.2846
Describe The Bug The function IDirect3DDevice8:CreatePixelShader() does not work. It is not passing the handle outarg to the C function.
IDirect3DDevice8:CreatePixelShader()
Additional Information Line 604 of idirect3ddevice8.lua should be changed from
idirect3ddevice8.lua
local res = self.lpVtbl.CreatePixelShader(self, pFunction);
to
local res = self.lpVtbl.CreatePixelShader(self, pFunction, handle);
Thanks for the report, will fix this when I have the time in the near future.
This is now fixed in the latest beta repo updates.
Ashita Version (Type /ashita in-game to get this.) 4.0.0.6
FFXI Version (Type /version in-game to get this.) unknown
Windows Version (ie. Start > About Your PC) 19044.2846
Describe The Bug The function
IDirect3DDevice8:CreatePixelShader()
does not work. It is not passing the handle outarg to the C function.Additional Information Line 604 of
idirect3ddevice8.lua
should be changed fromto