{
// Load projection matrix
gRSP.modelviewMtxs[gRSP.modelViewMtxTop] = mat;
+
+ //GSI: Hack needed to show heart in OOT & MM
+ //it renders at Z cordinate = 0.0f that gets clipped away.
+ //so we translate them a bit along Z to make them stick
+ if( options.enableHackForGames == HACK_FOR_ZELDA || options.enableHackForGames == HACK_FOR_ZELDA_MM)
+ {
+ if(gRSP.modelviewMtxs[gRSP.modelViewMtxTop]._43 == 0.0f
+ && gRSP.modelviewMtxs[gRSP.modelViewMtxTop]._42 != 0.0f
+ && gRSP.modelviewMtxs[gRSP.modelViewMtxTop]._42 <= 94.5f
+ && gRSP.modelviewMtxs[gRSP.modelViewMtxTop]._42 >= -94.5f)
+ {
+ gRSP.modelviewMtxs[gRSP.modelViewMtxTop]._43 -= 10.1f;
+ }
+ }
}
else
{