summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Anthony <johnanthony@lavabit.com>2013-06-15 19:41:25 +0100
committerJohn Anthony <johnanthony@lavabit.com>2013-06-15 19:41:25 +0100
commit3dc1040569cf98ae5b7efc32f8d652e803a126db (patch)
tree1bed047b4cc6378d6202169c66ed6c48531f70de
parent497600bf99c492614830aae2dccf7b4776a8fd42 (diff)
downloadnyancat-3dc1040569cf98ae5b7efc32f8d652e803a126db.tar.gz
nyancat-3dc1040569cf98ae5b7efc32f8d652e803a126db.tar.bz2
nyancat-3dc1040569cf98ae5b7efc32f8d652e803a126db.zip
Tidying after applying generic kernel linked lists
-rw-r--r--nyan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nyan.c b/nyan.c
index 4209f9c..5613f6d 100644
--- a/nyan.c
+++ b/nyan.c
@@ -520,7 +520,7 @@ stretch_images(void) {
stretchto.h = stretchto.w * cat_img[0]->h / cat_img[0]->w;
SDL_PixelFormat fmt = *(cat_img[0]->format);
- for(int i=0; i <= ANIM_FRAMES_FG; i++) {
+ for (int i=0; i <= ANIM_FRAMES_FG; i++) {
stretch_cat[i] = SDL_CreateRGBSurface(SURF_TYPE, stretchto.w,
stretchto.h,SCREEN_BPP,fmt.Rmask,fmt.Gmask,fmt.Bmask,fmt.Amask);
SDL_SoftStretch(cat_img[i],NULL,stretch_cat[i],NULL);