d_a_movie_player 99% (#1003)

* d_a_movie_player 99%

* Fix version differences
This commit is contained in:
LagoLunatic
2026-05-15 19:57:45 -04:00
committed by GitHub
parent d68b1d5f8a
commit 36ec2825ee
20 changed files with 1668 additions and 301 deletions
+4 -4
View File
@@ -392,8 +392,8 @@ void JFWDisplay::clearEfb_init() {
/* 80255F60-80255FA0 .text clearEfb__10JFWDisplayF8_GXColor */
void JFWDisplay::clearEfb(GXColor color) {
int height = mpRenderMode->efb_height;
int width = mpRenderMode->fb_width;
int height = mpRenderMode->efbHeight;
int width = mpRenderMode->fbWidth;
clearEfb(0, 0, width, height, color);
}
@@ -401,8 +401,8 @@ void JFWDisplay::clearEfb(GXColor color) {
/* 80255FA0-8025631C .text clearEfb__10JFWDisplayFiiii8_GXColor */
void JFWDisplay::clearEfb(int param_0, int param_1, int param_2, int param_3, GXColor color) {
Mtx44 mtx;
u16 height = mpRenderMode->efb_height;
u16 width = mpRenderMode->fb_width;
u16 height = mpRenderMode->efbHeight;
u16 width = mpRenderMode->fbWidth;
C_MTXOrtho(mtx, 0.0f, height, 0.0f, width, 0.0f, 1.0f);
GXSetProjection(mtx, GX_ORTHOGRAPHIC);