Skip to content

Commit

Permalink
fix match
Browse files Browse the repository at this point in the history
  • Loading branch information
coco875 committed Feb 4, 2025
1 parent 593a2a3 commit 8dc0330
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/menu_items.c
Original file line number Diff line number Diff line change
Expand Up @@ -4165,7 +4165,7 @@ void convert_img_to_greyscale(s32 arg0, u32 arg1) {
f32 sp48[32];

for (i = 0; i < 32; i++) {
sp48[i] = pow(i / 32.0, (arg1 * 1.5 / 256) + 0.25);
sp48[i] = pow(i / 32.0, (arg1 * 1.5 / 256.0) + 0.25);
}
color = &gMenuTextureBuffer[sMenuTextureMap[arg0].offset];
size = sMenuTextureMap[arg0 + 1].offset - sMenuTextureMap[arg0].offset;
Expand Down

0 comments on commit 8dc0330

Please sign in to comment.