summaryrefslogtreecommitdiff
path: root/src/cfg.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cfg.h')
-rw-r--r--src/cfg.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/cfg.h b/src/cfg.h
new file mode 100644
index 0000000..c0e8f4e
--- /dev/null
+++ b/src/cfg.h
@@ -0,0 +1,11 @@
+#pragma once
+#include "lzr.h"
+
+#define DWIDTH 400
+#define DHEIGHT 224
+#define TARGET_FPS 30
+#define TSIZE 16
+
+static const LZR_Config cfg = {
+ DWIDTH, DHEIGHT, TARGET_FPS, TSIZE, "jambase", 0.0, true, true
+};