fix compiling with latest sourcemod

This commit is contained in:
BotoX
2018-08-08 01:10:41 +02:00
parent ec05ea8524
commit 3385d96b54
4 changed files with 26 additions and 26 deletions
@@ -422,14 +422,14 @@ native NativeVotes_Cancel();
* @param item_votes Array of vote vote counts. Parallel with item_indexes.
* @noreturn
*/
functag public NativeVotes_VoteHandler(Handle:vote,
num_votes,
num_clients,
const client_indexes[],
const client_votes[],
num_items,
const item_indexes[],
const item_votes[]);
typedef NativeVotes_VoteHandler = function int (Handle vote,
int num_votes,
int num_clients,
const int[] client_indexes,
const int[] client_votes,
int num_items,
const int[] item_indexes,
const int[] item_votes);
/**
* Function to convert client/vote arrays into their two-dimensional versions,
* which can then be passed to a standard vote handler.