Skip to content

Commit 0cdc4d2

Browse files
authored
Remove some strange undocumented logic (#3013)
1 parent eba619d commit 0cdc4d2

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

Client/core/CCommandFuncs.cpp

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,6 @@ extern bool g_bBoundsChecker;
2121
void CCommandFuncs::Help(const char* szParameters)
2222
{
2323
CConsoleInterface* pConsole = g_pCore->GetConsole();
24-
25-
if (szParameters && atoi(szParameters) == 1)
26-
CCore::GetSingleton().GetMultiplayer()->AllowWindowsCursorShowing(true);
27-
else
28-
CCore::GetSingleton().GetMultiplayer()->AllowWindowsCursorShowing(false);
29-
3024
pConsole->Print(_("***[ COMMAND HELP ]***\n"));
3125

3226
// Loop through all the available commands
@@ -47,10 +41,6 @@ void CCommandFuncs::Exit(const char* szParameters)
4741

4842
void CCommandFuncs::Ver(const char* szParameters)
4943
{
50-
ShowCursor(TRUE);
51-
HCURSOR hc = LoadCursor(NULL, IDC_ARROW);
52-
SetCursor(hc);
53-
5444
// Compose version string
5545
unsigned short usNetRev = CCore::GetSingleton().GetNetwork()->GetNetRev();
5646
unsigned short usNetRel = CCore::GetSingleton().GetNetwork()->GetNetRel();

0 commit comments

Comments
 (0)