Skip to content

Commit

Permalink
Fix two silly errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Cole committed Nov 14, 2023
1 parent 0a4f5c5 commit 2c8897f
Show file tree
Hide file tree
Showing 9 changed files with 2 additions and 12 deletions.
4 changes: 2 additions & 2 deletions YSI_Coding/y_va/y_va_entry.inc
Original file line number Diff line number Diff line change
Expand Up @@ -296,10 +296,10 @@ stock bool:va_SetVehicleNumberPlate(vehicleid, const fmat[], GLOBAL_TAG_TYPES:..
stock bool:va_ShowPlayerDialog(playerid, dialogid, DIALOG_STYLE:style, const title[], const fmat[], const button1[], const button2[], GLOBAL_TAG_TYPES:...)
{
if (YSI_CheckNumargs__(7))
return bool:Dialog_ShowPlayerNative(playerid, dialogid, style, __const(title), __const(fmat), __const(button1), __const(button2));
return bool:ShowPlayerDialog(playerid, dialogid, style, __const(title), __const(fmat), __const(button1), __const(button2));
return
format(YSI_UNSAFE_HUGE_STRING, YSI_UNSAFE_HUGE_LENGTH, fmat, ___(7)),
bool:Dialog_ShowPlayerNative(playerid, dialogid, style, __const(title), YSI_UNSAFE_HUGE_STRING, __const(button1), __const(button2));
bool:ShowPlayerDialog(playerid, dialogid, style, __const(title), YSI_UNSAFE_HUGE_STRING, __const(button1), __const(button2));
}

stock Menu:va_CreateMenu(const fmat[], columns, Float:x, Float:y, Float:col1width, Float:col2width = 0.0, GLOBAL_TAG_TYPES:...)
Expand Down
5 changes: 0 additions & 5 deletions YSI_Extra/y_bcrypt.inc
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
#if defined _INC_y_bcrypt
#endinput
#endif
#define _INC_y_bcrypt

/*
Legal:
Version: MPL 1.1
Expand Down
5 changes: 0 additions & 5 deletions YSI_Extra/y_inline_bcrypt.inc
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
#if defined _INC_y_inline_bcrypt
#endinput
#endif
#define _INC_y_inline_bcrypt

/*
Legal:
Version: MPL 1.1
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 2c8897f

Please sign in to comment.