diff --git a/lua_translate b/lua_translate index 1f66a51..c9353cc 100755 --- a/lua_translate +++ b/lua_translate @@ -20,9 +20,9 @@ functionBlacklist = [ "engine_malloc" ] -statics = toml.loads(open("modules/engine/STATICS.toml").read()) -functions = toml.loads(open("modules/engine/FUNCTIONS.toml").read()) -ofile = open("modules/engine/lua.c","w") +statics = toml.loads(open("src/engine/values/statics.toml").read()) +functions = toml.loads(open("src/engine/values/functions.toml").read()) +ofile = open("src/engine/lua.c","w") ofile.write('''\ #include diff --git a/src/engine/FUNCTIONS.toml b/src/engine/values/functions.toml similarity index 100% rename from src/engine/FUNCTIONS.toml rename to src/engine/values/functions.toml diff --git a/src/engine/STATICS.toml b/src/engine/values/statics.toml similarity index 100% rename from src/engine/STATICS.toml rename to src/engine/values/statics.toml