summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/init.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/init.c b/src/init.c
index 21ffb85..5a1f1a0 100644
--- a/src/init.c
+++ b/src/init.c
@@ -20,6 +20,7 @@
#include <SDL_image.h>
#include "init.h"
#include "logging.h"
+#include "scripting/bindings.h"
void
init(void)
@@ -33,6 +34,9 @@ init(void)
if (IMG_Init(IMG_INIT_PNG) != IMG_INIT_PNG) {
err(1, "Failed to initialize SDL_Image (%s)", IMG_GetError());
}
+
+ debug("Initializing script bindings...");
+ bindings_init();
}
void