mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 14:15:41 +12:00
Update lua.cpp
This commit is contained in:
parent
9110176e00
commit
85161b08ea
1 changed files with 2 additions and 2 deletions
|
@ -167,9 +167,9 @@ static int loadROMThunk(lua_State* L) {
|
|||
}
|
||||
|
||||
size_t pathLength;
|
||||
const char* const r = lua_tolstring(L, -1, &pathLength);
|
||||
const char* const str = lua_tolstring(L, -1, &pathLength);
|
||||
|
||||
const auto path = std::filesystem::path(std::string(r, pathLength));
|
||||
const auto path = std::filesystem::path(std::string(str, pathLength));
|
||||
// Load ROM and reply if it succeeded or not
|
||||
lua_pushboolean(L, LuaManager::g_emulator->loadROM(path) ? 1 : 0);
|
||||
return 1;
|
||||
|
|
Loading…
Add table
Reference in a new issue