mirror of
https://github.com/zeldaret/tww.git
synced 2026-09-11 12:05:22 -04:00
d_a_movie_player 99% (#1003)
* d_a_movie_player 99% * Fix version differences
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user