mirror of
https://github.com/vapaamies/KolibriOS.git
synced 2025-09-22 07:03:53 +02:00
CRT functions/procedures made safe with overloaded Write/WriteLn implementations
This commit is contained in:
@@ -19,8 +19,8 @@ begin
|
||||
repeat
|
||||
with GetSystemDate, GetSystemTime do
|
||||
begin
|
||||
Write('%02x.%02x.%02x', Day, Month, Year);
|
||||
Write(' - %02x:%02x:%02x', Hours, Minutes, Seconds);
|
||||
Write('%02x.%02x.%02x', [Day, Month, Year]);
|
||||
Write(' - %02x:%02x:%02x', [Hours, Minutes, Seconds]);
|
||||
end;
|
||||
GotoXY(CursorXY);
|
||||
Delay(500);
|
||||
|
Reference in New Issue
Block a user