Skip to content

Commit

Permalink
Rename lua.hpp to lua_manager.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
wheremyfoodat committed Sep 27, 2023
1 parent ce99ef0 commit ee9c508
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ set(HEADER_FILES include/emulator.hpp include/helpers.hpp include/termcolor.hpp
include/applets/applet.hpp include/applets/mii_selector.hpp include/math_util.hpp include/services/soc.hpp
include/services/news_u.hpp include/applets/software_keyboard.hpp include/applets/applet_manager.hpp include/fs/archive_user_save_data.hpp
include/services/amiibo_device.hpp include/services/nfc_types.hpp include/swap.hpp include/services/csnd.hpp include/services/nwm_uds.hpp
include/fs/archive_system_save_data.hpp include/lua.hpp
include/fs/archive_system_save_data.hpp include/lua_manager.hpp
)

cmrc_add_resource_library(
Expand Down
2 changes: 1 addition & 1 deletion include/emulator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#include "crypto/aes_engine.hpp"
#include "discord_rpc.hpp"
#include "io_file.hpp"
#include "lua.hpp"
#include "lua_manager.hpp"
#include "memory.hpp"

#ifdef PANDA3DS_ENABLE_HTTP_SERVER
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/lua.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifdef PANDA3DS_ENABLE_LUA
#include "lua.hpp"
#include "lua_manager.hpp"

void LuaManager::initialize() {
L = luaL_newstate(); // Open Lua
Expand Down

0 comments on commit ee9c508

Please sign in to comment.