1
0
mirror of https://github.com/moparisthebest/Simba synced 2024-11-22 09:12:19 -05:00

Fix fuckups

This commit is contained in:
Merlijn Wajer 2010-07-16 02:13:24 +02:00
parent 6e08942bed
commit f912b8fd42
2 changed files with 2 additions and 2 deletions

View File

@ -132,7 +132,7 @@ begin
GetOnlineVersion(OnlineR); GetOnlineVersion(OnlineR);
if (OnlineR <= LocalR) then if (OnlineR <= LocalR) then
MessageDlg('Reflection Updater', 'No Reflection update' ,mtConfirmation, [mbYes],0); MessageDlg('Reflection Updater', 'No Reflection update' ,mtConfirmation, [mbYes],0)
else else
Update; Update;
end; end;

View File

@ -186,7 +186,7 @@ begin
GetLocalVersion(LocalP,LocalS); GetLocalVersion(LocalP,LocalS);
GetOnlineVersion(OnlineP,OnlineS); GetOnlineVersion(OnlineP,OnlineS);
if (OnlineP <= LocalP) and (OnlineS <= LocalS) then if (OnlineP <= LocalP) and (OnlineS <= LocalS) then
MessageDlg('SRL Updater', 'No SRL update / Plugins update available!', mtConfirmation, [mbYes], 0); MessageDlg('SRL Updater', 'No SRL update / Plugins update available!', mtConfirmation, [mbYes], 0)
else else
Update; Update;
end; end;