From 8272151d78843179e5a020fe8ffdebde436e5b60 Mon Sep 17 00:00:00 2001
From: Ross Bemrose <rbemrose@gmail.com>
Date: Tue, 16 Dec 2014 16:20:03 -0500
Subject: [PATCH] Convert the MapChooser VoteHandlers over to the new style.

---
 plugins/mapchooser.sp | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/plugins/mapchooser.sp b/plugins/mapchooser.sp
index 7ff9e983..4a1ea323 100644
--- a/plugins/mapchooser.sp
+++ b/plugins/mapchooser.sp
@@ -682,11 +682,11 @@ void InitiateVote(MapChange when, ArrayList inputlist=null)
 }
 
 public void Handler_VoteFinishedGeneric(Menu menu,
-						   int num_votes, 
+						   int num_votes,
 						   int num_clients,
-						   const int client_info[][2], 
+						   const int[][] client_info,
 						   int num_items,
-						   const int item_info[][2])
+						   const int[][] item_info)
 {
 	char map[PLATFORM_MAX_PATH];
 	menu.GetItem(item_info[0][VOTEINFO_ITEM_INDEX], map, sizeof(map));
@@ -777,11 +777,11 @@ public void Handler_VoteFinishedGeneric(Menu menu,
 }
 
 public void Handler_MapVoteFinished(Menu menu,
-						   int num_votes, 
+						   int num_votes,
 						   int num_clients,
-						   const int client_info[][2], 
+						   const int[][] client_info,
 						   int num_items,
-						   const int item_info[][2])
+						   const int[][] item_info)
 {
 	if (g_Cvar_RunOff.BoolValue && num_items > 1)
 	{