about summary refs log tree commit diff homepage
path: root/image.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-01-08 00:30:21 -0500
committerJune McEnroe <june@causal.agency>2019-01-08 00:30:21 -0500
commit643af427588de649b66717d9d7eed19d3d147f62 (patch)
treefd4db42dc8742c7fd564daa78e62e3460dc7e302 /image.c
parentRemove incorrect default coordinates (diff)
downloadtorus-643af427588de649b66717d9d7eed19d3d147f62.tar.gz
torus-643af427588de649b66717d9d7eed19d3d147f62.zip
Factor out default paths
Diffstat (limited to 'image.c')
-rw-r--r--image.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/image.c b/image.c
index 38cd7cd..d8fcbc7 100644
--- a/image.c
+++ b/image.c
@@ -256,8 +256,8 @@ next:
 
 int main(int argc, char *argv[]) {
 	bool kcgi = false;
-	const char *fontPath = "default8x16.psfu";
-	const char *dataPath = "torus.dat";
+	const char *fontPath = DefaultFontPath;
+	const char *dataPath = DefaultDataPath;
 	uint32_t tileX = TileInitX;
 	uint32_t tileY = TileInitY;