Emulator Issues #3407
closedResident Evil 0 GC and Wii shadow effects
0%
Description
What steps will reproduce the problem?
1.Run r5778 - character has no shadow
2.
What is the expected output? What do you see instead?
Dolphin version with the problem? Other Dolphin version without the
problem?
r5777 works properly
r5778 has this issue (no shadow)
32-bit or 64-bit and any other build parameters?
Any
OS version and versions of tools/libraries used?
Windows (any)
Please provide any additional information below.
Updated by hatarumoroboshi over 14 years ago
In fact it's only a problem of the Dx9 plugin, with the OpenGL plugin shadows aren't missing.
Updated by bgtsetso over 14 years ago
I can confirm that this issue is still present in r6314
Updated by Anonymous over 14 years ago
In void Renderer::SetLogicOpMode() else calls SetBlendMode(true) but in SetBlendMode is return:
if (bpmem.blendmode.logicopenable)
return;
commenting above line and shadows aper, also disabling check for bpmem.blendmode.logicmode != 3 in SetLogicOpMode helps.
Updated by Anonymous over 14 years ago
Above notes was for DX11 plugin, also using something like that in SetBlendMode helps:
if (bpmem.blendmode.logicopenable && !forceUpdate)
return;
Updated by rodolfoosvaldobogado over 14 years ago
- Status changed from New to Fixed