Skip to content

Commit a0e8ad4

Browse files
committed
- fix GR_SetOffscreenState not compiling without USE_PGXP
1 parent b968543 commit a0e8ad4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src_rebuild/PsyCross/src/render/PsyX_render.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1497,7 +1497,7 @@ void GR_SetOffscreenState(const RECT16* offscreenRect, int enable)
14971497
#ifdef USE_PGXP
14981498
GR_Ortho2D(-0.5f, 0.5f, 0.5f, -0.5f, -1.0f, 1.0f);
14991499
#else
1500-
GR_Ortho2D(0, offscreenRect.w, offscreenRect.h, 0, -1.0f, 1.0f);
1500+
GR_Ortho2D(0, offscreenRect->w, offscreenRect->h, 0, -1.0f, 1.0f);
15011501
#endif
15021502
}
15031503
else

0 commit comments

Comments
 (0)