From ee9c508bc48200770e0b1eddf4f8fc87c231a9d4 Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Thu, 28 Sep 2023 02:31:05 +0300 Subject: [PATCH] Rename lua.hpp to lua_manager.hpp --- CMakeLists.txt | 2 +- include/emulator.hpp | 2 +- include/{lua.hpp => lua_manager.hpp} | 0 src/lua.cpp | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename include/{lua.hpp => lua_manager.hpp} (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 332f7c5f..7c0d22c8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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( diff --git a/include/emulator.hpp b/include/emulator.hpp index 25c0ed49..a00c7fe1 100644 --- a/include/emulator.hpp +++ b/include/emulator.hpp @@ -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 diff --git a/include/lua.hpp b/include/lua_manager.hpp similarity index 100% rename from include/lua.hpp rename to include/lua_manager.hpp diff --git a/src/lua.cpp b/src/lua.cpp index bcaac3ab..729b6581 100644 --- a/src/lua.cpp +++ b/src/lua.cpp @@ -1,5 +1,5 @@ #ifdef PANDA3DS_ENABLE_LUA -#include "lua.hpp" +#include "lua_manager.hpp" void LuaManager::initialize() { L = luaL_newstate(); // Open Lua