# HG changeset patch # User Wuzzy # Date 1505931959 -7200 # Node ID e29a4238dc193397158325246cc0637a466242b5 # Parent 5eb227531589745b72650acff14ec8cfeb4e9c42 Increase maximum event string message count to 255 diff -r 5eb227531589 -r e29a4238dc19 hedgewars/uLocale.pas --- a/hedgewars/uLocale.pas Wed Sep 20 19:59:25 2017 +0200 +++ b/hedgewars/uLocale.pas Wed Sep 20 20:25:59 2017 +0200 @@ -22,7 +22,7 @@ interface uses uTypes; -const MAX_EVENT_STRINGS = 100; +const MAX_EVENT_STRINGS = 255; procedure LoadLocale(FileName: shortstring); function Format(fmt: shortstring; var arg: shortstring): shortstring;