diff -r 17f3ca06e39a -r 4fca8bcfaff0 hedgewars/uConsts.pas --- a/hedgewars/uConsts.pas Sat Jun 14 23:59:20 2014 +0200 +++ b/hedgewars/uConsts.pas Sun Jun 15 00:02:25 2014 +0200 @@ -26,6 +26,17 @@ {$INCLUDE "config.inc"} const + HaltNoError = 0; + HaltUsageError = 1; + HaltFatalError = 2; + HaltStartupError = 3; + + // for automatic tests + HaltTestSuccess = 0; + HaltTestFailed = 10; + HaltTestLuaError = 11; + + sfMax = 1000; // message constants @@ -302,10 +313,6 @@ kSystemSoundID_Vibrate = $00000FFF; - rtnTestSuccess = $00000000; - rtnTestFailed = $00000001; - rtnTestLuaErr = $00000002; - implementation end.