about summary refs log tree commit diff
path: root/src/engine/client/client.h
diff options
context:
space:
mode:
authoroy <Tom_Adams@web.de>2011-03-18 19:03:13 +0100
committeroy <Tom_Adams@web.de>2011-03-18 19:03:13 +0100
commita8bf857c6877679ff943ad9dbfba5aac1870ccae (patch)
treed6ec05d43c840242e8036af662c2d38cf189670a /src/engine/client/client.h
parenta3c9ec889f487c2de307f41904454e85b0efa21c (diff)
downloadzcatch-a8bf857c6877679ff943ad9dbfba5aac1870ccae.tar.gz
zcatch-a8bf857c6877679ff943ad9dbfba5aac1870ccae.zip
improved server browser list resorting and made search work on IP addresses. Closes #482
Diffstat (limited to 'src/engine/client/client.h')
-rw-r--r--src/engine/client/client.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/engine/client/client.h b/src/engine/client/client.h
index e0cd17a2..b5be566b 100644
--- a/src/engine/client/client.h
+++ b/src/engine/client/client.h
@@ -121,6 +121,7 @@ class CClient : public IClient, public CDemoPlayer::IListner
 	bool m_AutoScreenshotRecycle;
 	bool m_EditorActive;
 	bool m_SoundInitFailed;
+	bool m_ResortServerBrowser;
 
 	int m_AckGameTick;
 	int m_CurrentRecvTick;
@@ -304,6 +305,7 @@ public:
 	static void Con_Play(IConsole::IResult *pResult, void *pUserData);
 	static void Con_Record(IConsole::IResult *pResult, void *pUserData);
 	static void Con_StopRecord(IConsole::IResult *pResult, void *pUserData);
+	static void ConchainServerBrowserUpdate(IConsole::IResult *pResult, void *pUserData, IConsole::FCommandCallback pfnCallback, void *pCallbackUserData);
 
 	void RegisterCommands();
 
@@ -314,5 +316,7 @@ public:
 
 	void AutoScreenshot_Start();
 	void AutoScreenshot_Cleanup();
+
+	void ServerBrowserUpdate();
 };
 #endif