From da0f47b0486b5116a5ee87238662c750220f1093 Mon Sep 17 00:00:00 2001 From: TJ Date: Fri, 15 Nov 2013 20:42:07 +0000 Subject: [PATCH] Game.print() with no text does a line-feed --- engine/Game.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/Game.py b/engine/Game.py index 82fd241..3355f48 100755 --- a/engine/Game.py +++ b/engine/Game.py @@ -78,7 +78,7 @@ class Game: # splash screen self.splash() - def print(self, text, style='body'): + def print(self, text='', style='body'): """ print a line of text and move the text origin to the next line """ if not style in self.styles: style = 'body' -- 2.17.1