about summary refs log tree commit diff
path: root/src/game/client/lineinput.h
diff options
context:
space:
mode:
authoroy <Tom_Adams@web.de>2010-11-17 18:36:19 +0100
committeroy <Tom_Adams@web.de>2010-11-17 18:36:19 +0100
commit3d3572f845c1d61acd960caf0c28562b9c8681e5 (patch)
tree35462aeb48e77f217a79fdaaee36b80777e81d55 /src/game/client/lineinput.h
parentd32b93d3ec538c89539d39c61cac4b56e00db8be (diff)
downloadzcatch-3d3572f845c1d61acd960caf0c28562b9c8681e5.tar.gz
zcatch-3d3572f845c1d61acd960caf0c28562b9c8681e5.zip
fixed some compiler warnings
Diffstat (limited to 'src/game/client/lineinput.h')
-rw-r--r--src/game/client/lineinput.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/client/lineinput.h b/src/game/client/lineinput.h
index f5c65282..71612b99 100644
--- a/src/game/client/lineinput.h
+++ b/src/game/client/lineinput.h
@@ -25,7 +25,7 @@ public:
 	void Set(const char *pString);
 	const char *GetString() const { return m_Str; }
 	int GetLength() const { return m_Len; }
-	unsigned GetCursorOffset() const { return m_CursorPos; }
+	int GetCursorOffset() const { return m_CursorPos; }
 };
 
 #endif