Fix indentation messed up by merging.
authorTimo Korvola <tkorvola@iki.fi>
Wed, 28 Mar 2018 11:15:10 +0000 (14:15 +0300)
committerTimo Korvola <tkorvola@iki.fi>
Wed, 28 Mar 2018 16:40:31 +0000 (19:40 +0300)
Most of the code remains formatted in the original author's rather
original style.  I have reformatted some functions that I have been
working with to K & R style.

src/sdl/sf_video.c

index 4523d266b8d3245e56f6731f06c5176134313c63..f1ca7f1795d04d775da8da74fd20ab0aa0878aa4 100644 (file)
@@ -410,8 +410,8 @@ void sf_initvideo( int W, int H, int full)
     Uint32 initflags = SDL_INIT_VIDEO | SDL_INIT_NOPARACHUTE | SDL_INIT_TIMER
             | SDL_INIT_AUDIO;
 
-  sprintf(banner, "SDL Frotz v%s - %s (z%d)",
-          frotz_version, f_setup.story_name, h_version);
+    sprintf(banner, "SDL Frotz v%s - %s (z%d)",
+            frotz_version, f_setup.story_name, h_version);
     video_flags = 0;
 
     if ( SDL_Init(initflags) < 0 ) {