This commit is contained in:
Ethan Roseman 2020-11-10 15:33:36 -05:00
parent b13edadd99
commit b71ff4bbc2
2 changed files with 3 additions and 2 deletions

View File

@ -46,7 +46,7 @@ void pause_interp_cursor(void) {
}
if (gPauseMenuCursorTargetOpacity == 0) {
opacity= &gPauseMenuCursorOpacity;
opacity = &gPauseMenuCursorOpacity;
*opacity -= 128;
if (*opacity < 0) {

View File

@ -52,7 +52,8 @@ s32 pause_badges_get_pos_x(s32 page, s32 itemIndex) {
}
s32 pause_badges_get_pos_y(s32 page, s32 itemIndex) {
return ((page + 1) * 11) + (BADGE_MENU_PAGE(page)->listStart * 16) + ((itemIndex / BADGE_MENU_PAGE(page)->numCols) * 16);
return ((page + 1) * 11) + (BADGE_MENU_PAGE(page)->listStart * 16) + ((itemIndex / BADGE_MENU_PAGE(
page)->numCols) * 16);
}
s32 pause_badges_get_column(s32 page, s32 itemIdx) {