From 3ae7c3d317876c6f1da4064f6abc51fc4f8678f0 Mon Sep 17 00:00:00 2001 From: hendricks266 Date: Sat, 17 Jun 2017 11:42:15 +0000 Subject: [PATCH] Clean up gamefuncs in standalone mode. git-svn-id: https://svn.eduke32.com/eduke32@6189 1a8010ca-5511-0410-912e-c29ae57300e0 --- source/duke3d/src/_functio.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/source/duke3d/src/_functio.h b/source/duke3d/src/_functio.h index 835542c22..ad1685f40 100644 --- a/source/duke3d/src/_functio.h +++ b/source/duke3d/src/_functio.h @@ -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" };