Skip to content

Commit 0cff024

Browse files
authored
clang format pass
1 parent 8ce2c20 commit 0cff024

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src_c/rotozoom.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,8 @@ rotozoomSurface(SDL_Surface *src, double angle, double zoom, int smooth)
590590
SDL_FreeSurface(rz_dst);
591591
return NULL;
592592
}
593-
if (PG_SurfaceHasRLE(src) && SDL_SetSurfaceRLE(rz_dst, SDL_TRUE) != 0) {
593+
if (PG_SurfaceHasRLE(src) &&
594+
SDL_SetSurfaceRLE(rz_dst, SDL_TRUE) != 0) {
594595
SDL_FreeSurface(rz_dst);
595596
return NULL;
596597
}
@@ -647,7 +648,8 @@ rotozoomSurface(SDL_Surface *src, double angle, double zoom, int smooth)
647648
SDL_FreeSurface(rz_dst);
648649
return NULL;
649650
}
650-
if (PG_SurfaceHasRLE(src) && SDL_SetSurfaceRLE(rz_dst, SDL_TRUE) != 0) {
651+
if (PG_SurfaceHasRLE(src) &&
652+
SDL_SetSurfaceRLE(rz_dst, SDL_TRUE) != 0) {
651653
SDL_FreeSurface(rz_dst);
652654
return NULL;
653655
}

0 commit comments

Comments
 (0)