From 0adbb6acb6c41d65a8d616d2453ee9e646d6a857 Mon Sep 17 00:00:00 2001 From: Ryan Connelly Date: Sun, 4 Nov 2012 12:17:40 +1100 Subject: [PATCH] fixed title --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index a025cd9..52c7ea5 100644 --- a/main.c +++ b/main.c @@ -172,7 +172,7 @@ void run_game(void) if(frame_now - frame_prev > 1000) { char buf[16]; - sprintf(buf, "buldthensnip | FPS: %d", fps); + sprintf(buf, "buld then snip | FPS: %d", fps); SDL_WM_SetCaption(buf, 0); fps = 0; frame_prev = SDL_GetTicks();