From 60c8da9479657a2e87dd1089e53e0b7af1f8e9f1 Mon Sep 17 00:00:00 2001 From: fgsfds Date: Tue, 6 Apr 2021 02:32:06 +0300 Subject: [PATCH] bump MAX_PLAYERS to 16 --- include/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/types.h b/include/types.h index 5c08c8f2e..41195c5fc 100644 --- a/include/types.h +++ b/include/types.h @@ -392,7 +392,7 @@ struct MarioState // HOWEVER, simply increasing this to 3 will not magically work // many things will have to be overhauled! #ifdef UNSTABLE_BRANCH -#define MAX_PLAYERS 4 +#define MAX_PLAYERS 16 #else #define MAX_PLAYERS 2 #endif