Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hooks #1

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion filterscripts/tstudio/gui/gui.pwn
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ static GUIData[MAX_GUI][GUIMENUINFO];
#else
#define _ALS_OnGameModeExit
#endif
#define OnFilterScriptExit GUI_OnGameModeExit
#define OnGameModeExit GUI_OnGameModeExit
forward GUI_OnGameModeExit();
#endif

Expand Down
4 changes: 2 additions & 2 deletions filterscripts/tstudio/gui/playergui.pwn
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ static bool:SelectionOn[MAX_PLAYERS];
#else
#define _ALS_OnGameModeInit
#endif
#define OnFilterScriptInit GUIP_OnGameModeInit
#define OnGameModeInit GUIP_OnGameModeInit
forward GUIP_OnGameModeInit();

#endif
Expand Down Expand Up @@ -200,7 +200,7 @@ static bool:SelectionOn[MAX_PLAYERS];
#else
#define _ALS_OnGameModeExit
#endif
#define OnFilterScriptExit GUIP_OnGameModeExit
#define OnGameModeExit GUIP_OnGameModeExit
forward GUIP_OnGameModeExit();

#endif
Expand Down