diff -r fc52f7c22c9b -r 6155187bf599 hedgewars/uDebug.pas --- a/hedgewars/uDebug.pas Mon Jan 16 10:22:21 2012 +0100 +++ b/hedgewars/uDebug.pas Tue Jan 17 09:01:31 2012 -0500 @@ -42,12 +42,14 @@ procedure TryDo(Assert: boolean; Msg: shortstring; isFatal: boolean); begin -if not Assert then OutError(Msg, isFatal) +if not Assert then + OutError(Msg, isFatal) end; procedure SDLTry(Assert: boolean; isFatal: boolean); begin -if not Assert then OutError(SDL_GetError, isFatal) +if not Assert then + OutError(SDL_GetError, isFatal) end; end.