From 1ed4c36691bccdbe9a0f160a36c0f68775d07352 Mon Sep 17 00:00:00 2001 From: Timo Korvola Date: Wed, 28 Mar 2018 14:15:10 +0300 Subject: [PATCH] Fix indentation messed up by merging. 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sdl/sf_video.c b/src/sdl/sf_video.c index 4523d26..f1ca7f1 100644 --- a/src/sdl/sf_video.c +++ b/src/sdl/sf_video.c @@ -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 ) { -- 2.34.1