Starship/src/main/fox_852F0.c
petrie911 c69978c5eb
fox_360 and fox_bg decompiled, two more matches, some names. (#62)
* it begins

* stuff

* remove extra

* matched

* forgot one

* small things

* more matches

* filenames
2023-12-27 17:14:13 -03:00

39 lines
1.2 KiB
C

#include "global.h"
void func_800846F0(FrameBuffer* arg0) {
s32 i;
s32 j;
u16* var_v0;
s32 sp60[5];
s32 sp4C[5];
s32 sp38[5];
for (i = 0; i < gFrameCounter % SCREEN_HEIGHT; i++) {
var_v0 = SCREEN_WIDTH * i + arg0->data;
for (j = 0; j < gFrameCounter % SCREEN_WIDTH; j++, var_v0++) {
sp60[1] = RGBA16_RED(var_v0[0]);
sp4C[1] = RGBA16_GRN(var_v0[0]);
sp38[1] = RGBA16_BLU(var_v0[0]);
sp60[2] = RGBA16_RED(var_v0[1]);
sp4C[2] = RGBA16_GRN(var_v0[1]);
sp38[2] = RGBA16_BLU(var_v0[1]);
sp60[3] = RGBA16_RED(var_v0[SCREEN_WIDTH]);
sp4C[3] = RGBA16_GRN(var_v0[SCREEN_WIDTH]);
sp38[3] = RGBA16_BLU(var_v0[SCREEN_WIDTH]);
sp60[4] = RGBA16_RED(var_v0[SCREEN_WIDTH + 1]);
sp4C[4] = RGBA16_GRN(var_v0[SCREEN_WIDTH + 1]);
sp38[4] = RGBA16_BLU(var_v0[SCREEN_WIDTH + 1]);
sp60[0] = (sp60[1] + sp60[2] + sp60[3] + sp60[4]) / 4;
sp4C[0] = (sp4C[1] + sp4C[2] + sp4C[3] + sp4C[4]) / 4;
sp38[0] = (sp38[1] + sp38[2] + sp38[3] + sp38[4]) / 4;
var_v0[0] = (sp60[0] << 0xB) | (sp4C[0] << 0x6) | (sp38[0] << 0x1);
}
}
osWritebackDCacheAll();
}