diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2025-08-09 09:12:04 +0200 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2025-08-09 09:12:04 +0200 |
| commit | d06d50075b536cecb04ceaf6453980e398d68cb8 (patch) | |
| tree | afc803033c928bdb21585e9bb2e3a7d10e81d10a /main.c | |
| parent | f9fc0c1e8288cceec65db185a9a908b63a7c3d49 (diff) | |
| download | bidi-d06d50075b536cecb04ceaf6453980e398d68cb8.tar.gz | |
Removed tilemap from stdlib for now
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -12,7 +12,6 @@ #include "stdlib/json.h" #include "stdlib/color.h" #include "stdlib/button.h" -#include "stdlib/tilemap.h" #include "fonts/dejavusans_mono_bold.h" @@ -387,7 +386,6 @@ int main(int argc, char *argv[]) { if (!load_embedded_module(L, json, json_len, "json")) return 1; if (!load_embedded_module(L, color, color_len, "color")) return 1; if (!load_embedded_module(L, button, button_len, "button")) return 1; - if (!load_embedded_module(L, tilemap, tilemap_len, "tilemap")) return 1; // Registring Raylib mappings. lua_register(L, "open_window", l_open_window); |
