File size: 2,934 Bytes
72629ed | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | #if !_FIXES_NEW_COMPILER
#endinput
#endif
#if !FIXES_ExplicitSettings
#endinput
#endif
#if defined _inc__fixes_settings
#undef _inc__fixes_settings
#endif
#if defined _FIXES_SETTING
#undef _FIXES_SETTING
#define _FIXES_SETTING stock
#endif
#if !defined _FIXES_WARNING
#error `_fixes_settings.inc` included, but `_FIXES_WARNING` is not defined to select a warning message.
#endif
#pragma warning push
#pragma warning enable 237
#if _FIXES_WARNING == 1
#warning Setting `FIXES_ExplicitSettings`, to make all settings explicit, must now be explicit.
#elseif _FIXES_WARNING == 2
#warning Setting `FIXES_EnableAll`, to enable all fixes, must now be explicit.
#elseif _FIXES_WARNING == 3
#warning Setting `FIXES_EnableDeprecated`, to enable fixes for fixed bugs, must now be explicit.
#elseif _FIXES_WARNING == 4
#warning Setting `FIXES_DefaultDisabled`, to disable all fixes by default, must now be explicit.
#elseif _FIXES_WARNING == 5
#warning Setting `FIXES_ExplicitOptions`, to make all fixes explicit, must now be explicit.
#elseif _FIXES_WARNING == 6
#warning Setting `FIXES_SilentKick`, to kick users without any message, must now be explicit.
#elseif _FIXES_WARNING == 7
#warning Setting `FIXES_Debug`, to enable debug mode, must now be explicit.
#elseif _FIXES_WARNING == 8
#warning Setting `FIXES_Single`, to enable single script mode, must now be explicit.
#elseif _FIXES_WARNING == 9
#warning Setting `FIXES_NoSingleMsg`, to disable the single mode warning message, must now be explicit.
#elseif _FIXES_WARNING == 10
#warning Setting `FIXES_NoServerVarMsg`, to disable the config access warning message, must now be explicit.
#elseif _FIXES_WARNING == 11
#warning Setting `FIXES_NoGetMaxPlayersMsg`, to disable the `MAX_PLAYERS` warning message, must now be explicit.
#elseif _FIXES_WARNING == 12
#warning Setting `FIXES_NoPawndoc`, to disable all fixes.inc pawndoc output, must now be explicit.
#elseif _FIXES_WARNING == 13
#warning Setting `FIXES_CorrectInvalidTimerID`, to specify that you know invalid timers are `0`, must now be explicit.
#elseif _FIXES_WARNING == 14
#warning Setting `FIXES_NoYSI`, to optimise the code when YSI isn't used, must now be explicit.
#elseif _FIXES_WARNING == 15
#warning Setting `FIXES_OneRandomVehicleColour`, to allow only one random vehicle colour, must now be explicit.
#elseif _FIXES_WARNING == 16
#warning Setting `FIXES_NoVehicleColourMsg`, to disable the vehicle colours warning, must now be explicit.
#elseif _FIXES_WARNING == 17
#warning Setting `FIXES_CountFilterscripts`, to count loaded filterscripts, must now be explicit.
#elseif _FIXES_WARNING == 18
#warning Setting `FIXES_NoFilterscriptsMsg`, to hide the filterscripts error information, must now be explicit.
#else
#error `_fixes_settings.inc` included, but `_FIXES_WARNING` is not set to a valid warning message.
#endif
#pragma warning pop |