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:
hendricks266 2017-06-17 11:42:15 +00:00
parent 66c85ec71f
commit 3ae7c3d317

View file

@ -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"
};