diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2022-08-25 00:27:26 +0100 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2022-09-14 12:53:25 +0200 |
commit | f4eaf0c4559379c936ab2911e0edb5d69f6d2522 (patch) | |
tree | 47169415c186b9b4e33ca985663e1dc47b8f3b84 | |
parent | 36088a380e345fd60d2b6f66f62521fd3f98141a (diff) | |
download | NorthstarLauncher-f4eaf0c4559379c936ab2911e0edb5d69f6d2522.tar.gz NorthstarLauncher-f4eaf0c4559379c936ab2911e0edb5d69f6d2522.zip |
Rename `configurables.cpp` to `nsprefix.cpp` (#253)
-rw-r--r-- | NorthstarDLL/NorthstarDLL.vcxproj | 4 | ||||
-rw-r--r-- | NorthstarDLL/NorthstarDLL.vcxproj.filters | 4 | ||||
-rw-r--r-- | NorthstarDLL/bansystem.cpp | 2 | ||||
-rw-r--r-- | NorthstarDLL/dllmain.cpp | 2 | ||||
-rw-r--r-- | NorthstarDLL/logging.cpp | 2 | ||||
-rw-r--r-- | NorthstarDLL/modmanager.cpp | 2 | ||||
-rw-r--r-- | NorthstarDLL/nsprefix.cpp (renamed from NorthstarDLL/configurables.cpp) | 2 | ||||
-rw-r--r-- | NorthstarDLL/nsprefix.h (renamed from NorthstarDLL/configurables.h) | 0 | ||||
-rw-r--r-- | NorthstarDLL/serverauthentication.cpp | 2 |
9 files changed, 10 insertions, 10 deletions
diff --git a/NorthstarDLL/NorthstarDLL.vcxproj b/NorthstarDLL/NorthstarDLL.vcxproj index 153cdf80..d207bd32 100644 --- a/NorthstarDLL/NorthstarDLL.vcxproj +++ b/NorthstarDLL/NorthstarDLL.vcxproj @@ -126,7 +126,7 @@ <ClInclude Include="clientauthhooks.h" /> <ClInclude Include="color.h" /> <ClInclude Include="concommand.h" /> - <ClInclude Include="configurables.h" /> + <ClInclude Include="nsprefix.h" /> <ClInclude Include="context.h" /> <ClInclude Include="convar.h" /> <ClInclude Include="cvar.h" /> @@ -579,7 +579,7 @@ <ClCompile Include="clientruihooks.cpp" /> <ClCompile Include="clientvideooverrides.cpp" /> <ClCompile Include="concommand.cpp" /> - <ClCompile Include="configurables.cpp" /> + <ClCompile Include="nsprefix.cpp" /> <ClCompile Include="context.cpp" /> <ClCompile Include="convar.cpp" /> <ClCompile Include="cvar.cpp" /> diff --git a/NorthstarDLL/NorthstarDLL.vcxproj.filters b/NorthstarDLL/NorthstarDLL.vcxproj.filters index 53b3bea6..2be53e83 100644 --- a/NorthstarDLL/NorthstarDLL.vcxproj.filters +++ b/NorthstarDLL/NorthstarDLL.vcxproj.filters @@ -1458,7 +1458,7 @@ <ClInclude Include="bitbuf.h"> <Filter>Header Files\Shared</Filter> </ClInclude> - <ClInclude Include="configurables.h"> + <ClInclude Include="nsprefix.h"> <Filter>Header Files\Client</Filter> </ClInclude> <ClInclude Include="cvar.h"> @@ -1646,7 +1646,7 @@ <ClCompile Include="buildainfile.cpp"> <Filter>Source Files\Server</Filter> </ClCompile> - <ClCompile Include="configurables.cpp"> + <ClCompile Include="nsprefix.cpp"> <Filter>Source Files\Client</Filter> </ClCompile> <ClCompile Include="cvar.cpp"> diff --git a/NorthstarDLL/bansystem.cpp b/NorthstarDLL/bansystem.cpp index b96e69e3..df98464e 100644 --- a/NorthstarDLL/bansystem.cpp +++ b/NorthstarDLL/bansystem.cpp @@ -4,7 +4,7 @@ #include "concommand.h" #include "miscserverscript.h" #include <filesystem> -#include "configurables.h" +#include "nsprefix.h" #include <ctime> const char* BANLIST_PATH_SUFFIX = "/banlist.txt"; diff --git a/NorthstarDLL/dllmain.cpp b/NorthstarDLL/dllmain.cpp index c94d79c3..5a3ee239 100644 --- a/NorthstarDLL/dllmain.cpp +++ b/NorthstarDLL/dllmain.cpp @@ -32,7 +32,7 @@ #include "languagehooks.h" #include "audio.h" #include "buildainfile.h" -#include "configurables.h" +#include "nsprefix.h" #include "serverchathooks.h" #include "clientchathooks.h" #include "localchatwriter.h" diff --git a/NorthstarDLL/logging.cpp b/NorthstarDLL/logging.cpp index 4c35f86a..38d58fa0 100644 --- a/NorthstarDLL/logging.cpp +++ b/NorthstarDLL/logging.cpp @@ -7,7 +7,7 @@ #include "convar.h" #include <iomanip> #include <sstream> -#include "configurables.h" +#include "nsprefix.h" #include <dbghelp.h> // This needs to be called after hooks are loaded so we can access the command line args diff --git a/NorthstarDLL/modmanager.cpp b/NorthstarDLL/modmanager.cpp index 3c349d1c..868d6cff 100644 --- a/NorthstarDLL/modmanager.cpp +++ b/NorthstarDLL/modmanager.cpp @@ -15,7 +15,7 @@ #include <vector> #include "filesystem.h" #include "rpakfilesystem.h" -#include "configurables.h" +#include "nsprefix.h" ModManager* g_ModManager; diff --git a/NorthstarDLL/configurables.cpp b/NorthstarDLL/nsprefix.cpp index 389e6e0b..4c165e05 100644 --- a/NorthstarDLL/configurables.cpp +++ b/NorthstarDLL/nsprefix.cpp @@ -1,6 +1,6 @@ #include <string> #include "pch.h" -#include "configurables.h" +#include "nsprefix.h" std::string GetNorthstarPrefix() { diff --git a/NorthstarDLL/configurables.h b/NorthstarDLL/nsprefix.h index cc98e15e..cc98e15e 100644 --- a/NorthstarDLL/configurables.h +++ b/NorthstarDLL/nsprefix.h diff --git a/NorthstarDLL/serverauthentication.cpp b/NorthstarDLL/serverauthentication.cpp index 463bd0ba..9fc41372 100644 --- a/NorthstarDLL/serverauthentication.cpp +++ b/NorthstarDLL/serverauthentication.cpp @@ -13,7 +13,7 @@ #include <fstream> #include <filesystem> #include <thread> -#include "configurables.h" +#include "nsprefix.h" #include "nsmem.h" const char* AUTHSERVER_VERIFY_STRING = "I am a northstar server!"; |