Changeset 126 for cafu/branches/cafu_to_wx/Ca3DE/ConDefs.cpp
- Timestamp:
- 08/23/10 22:34:43 (21 months ago)
- Files:
-
- 1 modified
-
cafu/branches/cafu_to_wx/Ca3DE/ConDefs.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cafu/branches/cafu_to_wx/Ca3DE/ConDefs.cpp
r116 r126 54 54 /*static*/ ConVarT Options_DeathMatchPlayerName ("dlg_dmPlayerName", "Player", ConVarT::FLAG_MAIN_EXE | ConVarT::FLAG_PERSISTENT, "Player name for the DeathMatch game."); 55 55 /*static*/ ConVarT Options_DeathMatchModelName ("dlg_dmModelName", "James", ConVarT::FLAG_MAIN_EXE | ConVarT::FLAG_PERSISTENT, "Name of the model to use for the DeathMatch game."); 56 /*static*/ ConVarT Options_ClientFullScreen ("dlg_clFullScreen", true, ConVarT::FLAG_MAIN_EXE | ConVarT::FLAG_PERSISTENT, " If the clients runs in full-screen or windowed mode.");56 /*static*/ ConVarT Options_ClientFullScreen ("dlg_clFullScreen", true, ConVarT::FLAG_MAIN_EXE | ConVarT::FLAG_PERSISTENT, "When true, the video mode is changed on startup and fullscreen display is used. Otherwise, Cafu runs in an application window on the desktop."); 57 57 /*static*/ ConVarT Options_ClientWindowSizeX ("dlg_clWindowSizeX", 1024, ConVarT::FLAG_MAIN_EXE | ConVarT::FLAG_PERSISTENT, "The size of the client window in X direction."); 58 58 /*static*/ ConVarT Options_ClientWindowSizeY ("dlg_clWindowSizeY", 768, ConVarT::FLAG_MAIN_EXE | ConVarT::FLAG_PERSISTENT, "The size of the client window in Y direction."); … … 62 62 /*static*/ ConVarT Options_ClientRemoteName ("dlg_clRemoteName", "192.168.1.1", ConVarT::FLAG_MAIN_EXE | ConVarT::FLAG_PERSISTENT, "Name or IP of the server the client connects to."); 63 63 /*static*/ ConVarT Options_ClientRemotePortNr ("dlg_clRemotePort", 30000, ConVarT::FLAG_MAIN_EXE | ConVarT::FLAG_PERSISTENT, "Port number of the remote server.", 0, 0xFFFF); 64 /*static*/ ConVarT Options_ClientDisplayBPP ("dlg_clDisplayBPP", 1, ConVarT::FLAG_MAIN_EXE, "Use 0 for 16 BPP, 1 for 32 BPP.", 0, 1); 64 /*static*/ ConVarT Options_ClientDisplayBPP ("dlg_clDisplayBPP", 32, ConVarT::FLAG_MAIN_EXE, "The display depth in bits-per-pixel. Normally use 32, or 0 for system default.", 0, 64); 65 /*static*/ ConVarT Options_ClientDisplayRefresh ("dlg_clDisplayRefresh", 0, ConVarT::FLAG_MAIN_EXE, "The display refresh rate. Use 0 for system default, check with your monitor specs for any other value."); 65 66 /*static*/ ConVarT Options_ClientTextureDetail ("dlg_clTextureDetail", 0, ConVarT::FLAG_MAIN_EXE | ConVarT::FLAG_PERSISTENT, "0 high detail, 1 medium detail, 2 low detail", 0, 2); 66 67 /*static*/ ConVarT Options_ServerGameName ("dlg_svGameName", "DeathMatch", ConVarT::FLAG_MAIN_EXE, "Name of the game (MOD) to load.");
