aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBobTheBob <32057864+BobTheBob9@users.noreply.github.com>2022-08-25 00:27:26 +0100
committerGitHub <noreply@github.com>2022-08-25 01:27:26 +0200
commitf8885bc12e0f9c295a174319314e37cae310b192 (patch)
tree9e1be099d4544a5d9ab77a3cfcdf1a1732ee25a0
parentc3d20c8409a35772e371129d015913b7f08743fc (diff)
downloadNorthstarLauncher-f8885bc12e0f9c295a174319314e37cae310b192.tar.gz
NorthstarLauncher-f8885bc12e0f9c295a174319314e37cae310b192.zip
Rename `configurables.cpp` to `nsprefix.cpp` (#253)
-rw-r--r--NorthstarDLL/NorthstarDLL.vcxproj4
-rw-r--r--NorthstarDLL/NorthstarDLL.vcxproj.filters4
-rw-r--r--NorthstarDLL/bansystem.cpp2
-rw-r--r--NorthstarDLL/dllmain.cpp2
-rw-r--r--NorthstarDLL/logging.cpp2
-rw-r--r--NorthstarDLL/modmanager.cpp2
-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.cpp2
9 files changed, 10 insertions, 10 deletions
diff --git a/NorthstarDLL/NorthstarDLL.vcxproj b/NorthstarDLL/NorthstarDLL.vcxproj
index 76560b42..19444e8d 100644
--- a/NorthstarDLL/NorthstarDLL.vcxproj
+++ b/NorthstarDLL/NorthstarDLL.vcxproj
@@ -127,7 +127,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" />
@@ -580,7 +580,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 b0da9874..d0613408 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">
@@ -1649,7 +1649,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 273bf9c7..020ab1cd 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 fe340b29..8c7c82ec 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!";