summaryrefslogtreecommitdiff
path: root/source/modules/asura-utils/io/binding/_file_system.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/modules/asura-utils/io/binding/_file_system.cpp')
-rw-r--r--source/modules/asura-utils/io/binding/_file_system.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/modules/asura-utils/io/binding/_file_system.cpp b/source/modules/asura-utils/io/binding/_file_system.cpp
index 2efc4f6..3843451 100644
--- a/source/modules/asura-utils/io/binding/_file_system.cpp
+++ b/source/modules/asura-utils/io/binding/_file_system.cpp
@@ -113,7 +113,7 @@ namespace AsuraEngine
cc8* path = state.CheckValue<cc8*>(1);
std::string mp;
- if (fs->GetMountPoint(path, asura_out mp))
+ if (fs->GetMountPoint(path, ASURA_OUT mp))
state.Push(mp);
else
state.PushNil();
@@ -246,7 +246,7 @@ namespace AsuraEngine
cc8* path = state.CheckValue<cc8*>(1);
std::vector<std::string> items;
- if(fs->GetDirectoryItems(path, asura_out items))
+ if(fs->GetDirectoryItems(path, ASURA_OUT items))
{
lua_newtable(L); // item list
for (int i = 0; i < items.size(); ++i)