summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTinWoodman92 <chrhodgden@gmail.com>2023-12-16 06:30:12 -0600
committerTinWoodman92 <chrhodgden@gmail.com>2023-12-16 06:30:12 -0600
commit28e5a9cbc2430ff33ec117ccf9fa6ab9f6e321b3 (patch)
treea6a72b5f9783fc390011c0e11d19819ff471fd3a
parent158b36e51c8c2925d6c8af6e08380369d019378e (diff)
Removed database from repository. New repos will initialize thier own databases.
-rw-r--r--games.dbbin20480 -> 0 bytes
-rw-r--r--play.py6
2 files changed, 6 insertions, 0 deletions
diff --git a/games.db b/games.db
deleted file mode 100644
index 3915a40..0000000
--- a/games.db
+++ /dev/null
Binary files differ
diff --git a/play.py b/play.py
index d0b27b8..4b25e32 100644
--- a/play.py
+++ b/play.py
@@ -1,3 +1,9 @@
+import subprocess
+import os
+
+if not os.path.exists(os.path.join(os.getcwd(), 'games.db')):
+ subprocess.run(['python', 'crt_db.py'])
+
from load_nav import *
menu_tree = [None, None, mm_menu]