aboutsummaryrefslogtreecommitdiff
path: root/src/lane.cpp
diff options
context:
space:
mode:
authorBenoit Germain <benoit.germain@ubisoft.com>2024-05-28 17:34:56 +0200
committerBenoit Germain <benoit.germain@ubisoft.com>2024-05-28 17:34:56 +0200
commit8d7791f3eb1c5fc449490845254b59fdde30e9e0 (patch)
tree7c0c414bbe592b81a8c2073584bf1c627618ff2b /src/lane.cpp
parent02fea6561b8ea1a25d740088c4911b584bd763d9 (diff)
downloadlanes-8d7791f3eb1c5fc449490845254b59fdde30e9e0.tar.gz
lanes-8d7791f3eb1c5fc449490845254b59fdde30e9e0.tar.bz2
lanes-8d7791f3eb1c5fc449490845254b59fdde30e9e0.zip
Handle LUA_ERRFILE
Diffstat (limited to 'src/lane.cpp')
-rw-r--r--src/lane.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lane.cpp b/src/lane.cpp
index ada1846..129c926 100644
--- a/src/lane.cpp
+++ b/src/lane.cpp
@@ -364,7 +364,6 @@ namespace {
364 }; 364 };
365 365
366 namespace local { 366 namespace local {
367
368 static struct errcode_name sErrCodes[] = { 367 static struct errcode_name sErrCodes[] = {
369 { LuaError::OK, "LUA_OK" }, 368 { LuaError::OK, "LUA_OK" },
370 { LuaError::YIELD, "LUA_YIELD" }, 369 { LuaError::YIELD, "LUA_YIELD" },
@@ -373,6 +372,7 @@ namespace {
373 { LuaError::ERRMEM, "LUA_ERRMEM" }, 372 { LuaError::ERRMEM, "LUA_ERRMEM" },
374 { LuaError::ERRGCMM, "LUA_ERRGCMM" }, 373 { LuaError::ERRGCMM, "LUA_ERRGCMM" },
375 { LuaError::ERRERR, "LUA_ERRERR" }, 374 { LuaError::ERRERR, "LUA_ERRERR" },
375 { LuaError::ERRFILE, "LUA_ERRFILE" },
376 }; 376 };
377 } // namespace local 377 } // namespace local
378 378