summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dlua.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2011-06-18 11:45:10 +0200
committerAdam Borowski <kilobyte@angband.pl>2011-06-18 11:45:10 +0200
commit4d701c92ff02d11882e032d48f5dcae6f4edfa06 (patch)
tree6befc6452d77456845465b8a51e9bcd2ba7fc03c /crawl-ref/source/dlua.cc
parent3302fe61d0a01d8bd4ecd3cf2e89e52d550ae352 (diff)
downloadcrawl-ref-4d701c92ff02d11882e032d48f5dcae6f4edfa06.tar.gz
crawl-ref-4d701c92ff02d11882e032d48f5dcae6f4edfa06.zip
Rename dat/clua to dat/dlua to avoid the clua/dlua confusion.
There might be places where dlua is referred to as clua internally, and in many places "clua" means "lua in general".
Diffstat (limited to 'crawl-ref/source/dlua.cc')
-rw-r--r--crawl-ref/source/dlua.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/dlua.cc b/crawl-ref/source/dlua.cc
index ecc8291c68..6dfc5c6257 100644
--- a/crawl-ref/source/dlua.cc
+++ b/crawl-ref/source/dlua.cc
@@ -293,9 +293,9 @@ void init_dungeon_lua()
luaL_openlib(dlua, "debug", debug_dlib, 0);
luaL_openlib(dlua, "los", los_dlib, 0);
- dlua.execfile("clua/dungeon.lua", true, true);
- dlua.execfile("clua/luamark.lua", true, true);
- dlua.execfile("clua/mapinit.lua", true, true);
+ dlua.execfile("dlua/dungeon.lua", true, true);
+ dlua.execfile("dlua/luamark.lua", true, true);
+ dlua.execfile("dlua/mapinit.lua", true, true);
lua_getglobal(dlua, "dgn_run_map");
luaopen_debug(dlua);