diff options
-rw-r--r-- | src/init.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 |