add missing parameters to function declaration

This commit is contained in:
rtldg 2021-08-03 06:31:42 +00:00
parent d112d3dbd0
commit 2d168ddb1f

View File

@ -2035,7 +2035,7 @@ native bool Shavit_IsReplayEntity(int ent);
* @param ignorelimit Ignore cvar limit for dynamic bots. * @param ignorelimit Ignore cvar limit for dynamic bots.
* @return Replay entity. 0 is returned if couldn't be created. * @return Replay entity. 0 is returned if couldn't be created.
*/ */
native int Shavit_StartReplay(int style, int track, float delay, int client, int bot, bool ignorelimit = false); native int Shavit_StartReplay(int style, int track, float delay, int client, int bot, int type, bool ignorelimit = false);
/** /**
* Starts a replay with a given set of frames. * Starts a replay with a given set of frames.
@ -2052,7 +2052,7 @@ native int Shavit_StartReplay(int style, int track, float delay, int client, int
* @param size sizeof(frame_cache_t). Used to throw errors at you if you don't recompile plugins. * @param size sizeof(frame_cache_t). Used to throw errors at you if you don't recompile plugins.
* @return Replay entity. 0 is returned if couldn't be created. * @return Replay entity. 0 is returned if couldn't be created.
*/ */
native int Shavit_StartReplayFromFrameCache(int style, int track, float delay, int client, int bot, bool ignorelimit = false, any[] cache, int size = sizeof(frame_cache_t)); native int Shavit_StartReplayFromFrameCache(int style, int track, float delay, int client, int bot, int type, bool ignorelimit = false, any[] cache, int size = sizeof(frame_cache_t));
/** /**
* Starts a replay from a replay file. * Starts a replay from a replay file.
@ -2068,7 +2068,7 @@ native int Shavit_StartReplayFromFrameCache(int style, int track, float delay, i
* @param path File path to replay * @param path File path to replay
* @return Replay entity. 0 is returned if couldn't be created. * @return Replay entity. 0 is returned if couldn't be created.
*/ */
native int Shavit_StartReplayFromFile(int style, int track, float delay, int client, int bot, bool ignorelimit = false, const char[] path); native int Shavit_StartReplayFromFile(int style, int track, float delay, int client, int bot, int type, bool ignorelimit = false, const char[] path);
/** /**
* Reloads a specific replay into the replay bot cache. * Reloads a specific replay into the replay bot cache.