Skip to content

Commit 4766bbc

Browse files
committed
Fix Link becoming invisible in third-person
1 parent 51ad091 commit 4766bbc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hooking/camera.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ void CemuHooks::hook_UseCameraDistance(PPCInterpreter_t* hCPU) {
456456
void CemuHooks::hook_SetActorOpacity(PPCInterpreter_t* hCPU) {
457457
hCPU->instructionPointer = hCPU->sprNew.LR;
458458

459-
double toBeSetOpacity = hCPU->fpr[1].fp0;
459+
float toBeSetOpacity = hCPU->fpr[1].fp0;
460460
uint32_t actorPtr = hCPU->gpr[3];
461461

462462
ActorWiiU actor;

0 commit comments

Comments
 (0)