From: binarymaster Date: Mon, 20 Jun 2016 16:35:40 +0000 (+0300) Subject: Engine/Log: Fix typo X-Git-Url: http://deadsoftware.ru/gitweb?p=d2df-sdl.git;a=commitdiff_plain;h=7b809128bb64d689ad45cc3781c90b9c937f976a Engine/Log: Fix typo --- diff --git a/src/engine/e_log.pas b/src/engine/e_log.pas index f3dab4e..75b325e 100644 --- a/src/engine/e_log.pas +++ b/src/engine/e_log.pas @@ -69,7 +69,7 @@ begin begin case RecordCategory of MSG_FATALERROR: write('FATAL: '); - MSG_WARNING: write('WARNINIG: '); + MSG_WARNING: write('WARNING: '); end; writeln(TextLine); end;