Allow setting DEBUG via an environment variable.
[tabakrolletjie.git] / tabakrolletjie / constants.py
index 5acf89aa9fb83519d9aec53157076357cff2adc2..378003bfcdfb49ff720e5906c286352e85301e76 100644 (file)
@@ -1,10 +1,12 @@
 """ Game constants.
 """
 
+import os
+
 TITLE = "Space Turnips"
 
 # Debug
-DEBUG = False
+DEBUG = os.environ.get("TABAK_DEBUG", "").lower() in ("1", "y", "yes")
 
 # 704 is 768 minus space for window decorations :)
 SCREEN_SIZE = (1024, 704)