1
0
mirror of https://github.com/moparisthebest/Simba synced 2024-11-21 16:55:01 -05:00

Added lil writeln.

git-svn-id: http://www.villavu.com/repositories/merlijn/mufasa@392 3f818213-9676-44b0-a9b4-5e4c4e03d09d
This commit is contained in:
Raymond 2010-01-10 15:47:18 +00:00
parent 5e942f7bde
commit 01be7fef21
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ uses
ocr, updateform, simbasettings;
const
SimbaVersion = 391;
SimbaVersion = 392;
type

View File

@ -62,7 +62,7 @@ uses
function TSimbaUpdateForm.CanUpdate: Boolean;
begin
GetLatestSimbaVersion;
Writeln(format('Current Simba version: %d',[TestUnit.SimbaVersion]));
Writeln('Latest Simba Version: ' + IntToStr(FSimbaVersion));
Exit(testunit.SimbaVersion < FSimbaVersion);
end;