From 249a170acef352b40c7fa67fe65bdc62cbae4ff1 Mon Sep 17 00:00:00 2001 From: tron Date: Sun, 14 Nov 2004 19:44:06 +0000 Subject: (svn r607) -Patch: [ 985102 ] static cleanup Thanks to lvoge --- misc_gui.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'misc_gui.c') diff --git a/misc_gui.c b/misc_gui.c index ee5532fae..04deaacd4 100644 --- a/misc_gui.c +++ b/misc_gui.c @@ -1338,14 +1338,14 @@ void AskForNewGameToStart() w->vscroll.cap = 27; } -int32 ClickMoneyCheat(int32 p1, int32 p2) +static int32 ClickMoneyCheat(int32 p1, int32 p2) { DoCommandP(0, -10000000, 0, NULL, CMD_MONEY_CHEAT); return true; } // p1 player to set to, p2 is -1 or +1 (down/up) -int32 ClickChangePlayerCheat(int32 p1, int32 p2) +static int32 ClickChangePlayerCheat(int32 p1, int32 p2) { while(p1 >= 0 && p1 < MAX_PLAYERS) { if (_players[p1].is_active) { -- cgit v1.2.3-54-g00ecf