From 7afaaf3a600cbefb5980b5f503e4c3b1a1c749b9 Mon Sep 17 00:00:00 2001 From: Celtic Minstrel Date: Sat, 12 Apr 2014 01:37:37 -0400 Subject: [PATCH] SFML doesn't like textures of size 0 --- osx/boe.graphics.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/osx/boe.graphics.cpp b/osx/boe.graphics.cpp index b6b033fc..2e2ee0a2 100644 --- a/osx/boe.graphics.cpp +++ b/osx/boe.graphics.cpp @@ -561,10 +561,10 @@ void end_startup() if (startup_loaded == false) return; - startup_gworld.create(0,0); - startup_button_orig.create(0,0); - startup_button_g.create(0,0); - anim_mess.create(0,0); + startup_gworld.create(1,1); + startup_button_orig.create(1,1); + startup_button_g.create(1,1); + anim_mess.create(1,1); startup_loaded = false; load_main_screen();