mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 03:00:46 +00:00
Clean up gamefuncs in standalone mode.
git-svn-id: https://svn.eduke32.com/eduke32@6189 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
66c85ec71f
commit
3ae7c3d317
1 changed files with 16 additions and 0 deletions
|
@ -70,10 +70,17 @@ char gamefunctions[NUMGAMEFUNCTIONS][MAXGAMEFUNCLEN] =
|
|||
"Inventory",
|
||||
"Inventory_Left",
|
||||
"Inventory_Right",
|
||||
#ifndef EDUKE32_STANDALONE
|
||||
"Holo_Duke",
|
||||
"Jetpack",
|
||||
"NightVision",
|
||||
"MedKit",
|
||||
#else
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
#endif
|
||||
"TurnAround",
|
||||
"SendMessage",
|
||||
"Map",
|
||||
|
@ -86,12 +93,21 @@ char gamefunctions[NUMGAMEFUNCTIONS][MAXGAMEFUNCLEN] =
|
|||
"See_Coop_View",
|
||||
"Mouse_Aiming",
|
||||
"Toggle_Crosshair",
|
||||
#ifndef EDUKE32_STANDALONE
|
||||
"Steroids",
|
||||
"Quick_Kick",
|
||||
#else
|
||||
"",
|
||||
"",
|
||||
#endif
|
||||
"Next_Weapon",
|
||||
"Previous_Weapon",
|
||||
"Show_Console",
|
||||
#ifndef EDUKE32_STANDALONE
|
||||
"Show_DukeMatch_Scores",
|
||||
#else
|
||||
"Show_Multiplayer_Scores",
|
||||
#endif
|
||||
"Dpad_Select",
|
||||
"Dpad_Aiming"
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue