mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2025-10-30 08:01:01 +00:00
Increase MAX_HOOKED_BEHAVIORS to 1024 (#630)
So far in my testing, not seeing any negative ramifications whatsoever
This commit is contained in:
parent
42e0051dda
commit
20248881c4
1 changed files with 1 additions and 1 deletions
|
|
@ -1297,7 +1297,7 @@ struct LuaHookedBehavior {
|
||||||
struct Mod* mod;
|
struct Mod* mod;
|
||||||
};
|
};
|
||||||
|
|
||||||
#define MAX_HOOKED_BEHAVIORS 256
|
#define MAX_HOOKED_BEHAVIORS 1024
|
||||||
|
|
||||||
static struct LuaHookedBehavior sHookedBehaviors[MAX_HOOKED_BEHAVIORS] = { 0 };
|
static struct LuaHookedBehavior sHookedBehaviors[MAX_HOOKED_BEHAVIORS] = { 0 };
|
||||||
static int sHookedBehaviorsCount = 0;
|
static int sHookedBehaviorsCount = 0;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue