Skip to content

Commit

Permalink
clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
sauraen committed Jun 1, 2024
1 parent 043fdac commit 4d12f85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/overlays/actors/ovl_En_Ex_Ruppy/z_en_ex_ruppy.c
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ void EnExRuppy_Draw(Actor* thisx, PlayState* play) {
// skipped, so this command tells it not to skip them. However, if the
// rupee really is the same as last time, then we can let the optimizer
// skip the load.
if(this->colorIdx != lastColorIdx){
if (this->colorIdx != lastColorIdx) {
gSPDontSkipTexLoadsAcross(POLY_OPA_DISP++);
lastColorIdx = this->colorIdx;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ void EffectSsStone1_Draw(PlayState* play, u32 index, EffectSs* this) {
// skipped, so this command tells it not to skip them. However, if the
// particle really is the same as last time, then we can let the optimizer
// skip the load.
if(this->life != lastTextureIndex){
if (this->life != lastTextureIndex) {
gSPDontSkipTexLoadsAcross(POLY_OPA_DISP++);
lastTextureIndex = this->life;
}
Expand Down

0 comments on commit 4d12f85

Please sign in to comment.