changeset 6580 | 6155187bf599 |
parent 4976 | 088d40d8aba2 |
child 6700 | e04da46ee43c |
--- 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.