Skip to content

Commit

Permalink
Derp fix
Browse files Browse the repository at this point in the history
  • Loading branch information
RocketRobz committed Oct 29, 2023
1 parent daf8a2d commit ba3e5b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion title/arm9/source/graphics/graphics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ void LoadBMP(void) {
break;
}
}
for (c2 = 0; c2 < colorsCached; c2++) {
for (c2 = 0; c2 < colorsCached2; c2++) {
if (prevColor2[c2] == color2) {
cachedColorFound2 = true;
break;
Expand Down
2 changes: 1 addition & 1 deletion title/arm9/source/twlmenuppvideo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -770,7 +770,7 @@ void twlMenuVideo(void) {
break;
}
}
for (c2 = 0; c2 < colorsCached; c2++) {
for (c2 = 0; c2 < colorsCached2; c2++) {
if (prevColor2[c2] == color2) {
cachedColorFound2 = true;
break;
Expand Down

0 comments on commit ba3e5b4

Please sign in to comment.