Merge pull request #333 from TheMadSword/IncreasedPrintToBufferSize

Increased PrintToChat, PrintCenter & PrintHint w/ "all" version, buffer sizes from 192 to 254.
This commit is contained in:
Nicholas Hastings
2015-05-12 09:23:25 -04:00
3 changed files with 7 additions and 7 deletions
+3 -3
View File
@@ -324,7 +324,7 @@ native PrintToChat(client, const String:format[], any:...);
*/
stock PrintToChatAll(const String:format[], any:...)
{
decl String:buffer[192];
decl String:buffer[254];
for (new i = 1; i <= MaxClients; i++)
{
@@ -357,7 +357,7 @@ native PrintCenterText(client, const String:format[], any:...);
*/
stock PrintCenterTextAll(const String:format[], any:...)
{
decl String:buffer[192];
decl String:buffer[254];
for (new i = 1; i <= MaxClients; i++)
{
@@ -390,7 +390,7 @@ native PrintHintText(client, const String:format[], any:...);
*/
stock PrintHintTextToAll(const String:format[], any:...)
{
decl String:buffer[192];
decl String:buffer[254];
for (new i = 1; i <= MaxClients; i++)
{