aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDedicatedTest/concommand.cpp
diff options
context:
space:
mode:
authorBobTheBob <32057864+BobTheBob9@users.noreply.github.com>2021-08-25 04:53:17 +0100
committerBobTheBob <32057864+BobTheBob9@users.noreply.github.com>2021-08-25 04:53:17 +0100
commit9c9afa37b9a410ea14b960c203a91bd8d8c767ca (patch)
tree1169321b84da266da382c15a2a14ea9ce38940c9 /NorthstarDedicatedTest/concommand.cpp
parentcd727a453a7d42a61bd161ea0c9947aee644e4f1 (diff)
downloadNorthstarLauncher-9c9afa37b9a410ea14b960c203a91bd8d8c767ca.tar.gz
NorthstarLauncher-9c9afa37b9a410ea14b960c203a91bd8d8c767ca.zip
deprecate clc_SetPlaylistVarOverride
Diffstat (limited to 'NorthstarDedicatedTest/concommand.cpp')
-rw-r--r--NorthstarDedicatedTest/concommand.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/NorthstarDedicatedTest/concommand.cpp b/NorthstarDedicatedTest/concommand.cpp
index 8cf52b9d..5e0fab42 100644
--- a/NorthstarDedicatedTest/concommand.cpp
+++ b/NorthstarDedicatedTest/concommand.cpp
@@ -15,18 +15,7 @@ void RegisterConCommand(const char* name, void(*callback)(const CCommand&), cons
conCommandConstructor(newCommand, name, callback, helpString, flags, nullptr);
}
-void SetPlaylistCommand(const CCommand& args)
-{
- if (args.ArgC() < 2)
- return;
-
- SetCurrentPlaylist(args.Arg(1));
-}
-
void InitialiseConCommands(HMODULE baseAddress)
{
conCommandConstructor = (ConCommandConstructorType)((char*)baseAddress + 0x415F60);
-
- // this shouldn't be here but idk where else to put it rn
- RegisterConCommand("setplaylist", SetPlaylistCommand, "", FCVAR_NONE);
} \ No newline at end of file