summaryrefslogtreecommitdiff
path: root/source/ui_playerconfig.c
diff options
context:
space:
mode:
authorAndrey Nazarov <skuller@skuller.net>2008-04-02 23:03:09 +0000
committerAndrey Nazarov <skuller@skuller.net>2008-04-02 23:03:09 +0000
commit7ec50f12252b4dfb97f3249ccf05a771b98785c1 (patch)
tree279e4e8bd7b940368331a43869c165de9637ae99 /source/ui_playerconfig.c
parent80e48417564f1ce50a39a7c552ad95e651362c1f (diff)
Use size_t instead of int where possible.
Added initial support for Win64 port.
Diffstat (limited to 'source/ui_playerconfig.c')
-rw-r--r--source/ui_playerconfig.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/ui_playerconfig.c b/source/ui_playerconfig.c
index 5fc0c67..a7e9f97 100644
--- a/source/ui_playerconfig.c
+++ b/source/ui_playerconfig.c
@@ -272,7 +272,7 @@ qboolean PlayerConfig_MenuInit( void ) {
m_playerConfig.nameField.generic.type = MTYPE_FIELD;
m_playerConfig.nameField.generic.flags = QMF_HASFOCUS;
m_playerConfig.nameField.generic.name = "name";
- IF_InitText( &m_playerConfig.nameField.field, 16, 16,
+ IF_Init( &m_playerConfig.nameField.field, 16, 16,
cvar.VariableString( "name" ) );
m_playerConfig.modelBox.generic.type = MTYPE_SPINCONTROL;