(svn r156) -Codechange: remove obsolete callback arrays
authordarkvater
Fri, 03 Sep 2004 21:48:21 +0000
changeset 155 81e9878f3678
parent 154 4bece94b325c
child 156 8fef5e5752d6
(svn r156) -Codechange: remove obsolete callback arrays
misc_gui.c
settings_gui.c
--- a/misc_gui.c	Fri Sep 03 20:25:49 2004 +0000
+++ b/misc_gui.c	Fri Sep 03 21:48:21 2004 +0000
@@ -1322,9 +1322,6 @@
 	w->vscroll.cap = 27;
 }
 
-
-
-
 int32 ClickMoneyCheat(int32 p1, int32 p2)
 {
 		DoCommandP(0, -10000000, 0, NULL, CMD_MONEY_CHEAT);
@@ -1334,17 +1331,16 @@
 // p1 player to set to, p2 is -1 or +1 (down/up)
 int32 ClickChangePlayerCheat(int32 p1, int32 p2)
 {
-	while(p1 >= 0 && p1 < MAX_PLAYERS)
-	{
-		if (_players[p1].is_active)
-		{
+	while(p1 >= 0 && p1 < MAX_PLAYERS) {
+		if (_players[p1].is_active)	{
 			_local_player = p1;
 			MarkWholeScreenDirty();
 			return _local_player;
 		}
 		p1 += p2;
 	}
-return _local_player;
+
+	return _local_player;
 }
 
 // p1 -1 or +1 (down/up)
@@ -1375,12 +1371,6 @@
 }
 
 typedef int32 CheckButtonClick(int32, int32);
-static CheckButtonClick * const _cheat_button_proc[] = {
-	ClickMoneyCheat,
-	ClickChangePlayerCheat,
-	ClickChangeDateCheat,
-};
-
 
 typedef struct CheatEntry {
 	byte type;    // type of selector
--- a/settings_gui.c	Fri Sep 03 20:25:49 2004 +0000
+++ b/settings_gui.c	Fri Sep 03 21:48:21 2004 +0000
@@ -672,10 +672,10 @@
 
 int32 AiNew_PatchActive_Warning(int32 p1)
 {
-    if (p1 == 1)
-    	ShowErrorMessage(-1, TEMP_AI_ACTIVATED, 0, 0);
-    	
-    return 0;
+  if (p1 == 1)
+    ShowErrorMessage(-1, TEMP_AI_ACTIVATED, 0, 0);
+    
+  return 0;
 }
 
 int32 InvisibleTreesActive(int32 p1)
@@ -685,9 +685,6 @@
 }
 
 typedef int32 PatchButtonClick(int32);
-static PatchButtonClick * const _patch_button_proc[] = {
-	&v_PositionMainToolbar,
-};
 
 typedef struct PatchEntry {
 	byte type;										// type of selector