[tuxdroid-svn] r5388 - software_suite_v3/software/tool/tool-second-installer/trunk/tool-second-inst
Status: Beta
Brought to you by:
ks156
|
From: jerome <c2m...@c2...> - 2009-09-15 09:03:39
|
Author: jerome
Date: 2009-09-15 11:03:27 +0200 (Tue, 15 Sep 2009)
New Revision: 5388
Modified:
software_suite_v3/software/tool/tool-second-installer/trunk/tool-second-installer/Unit1.pas
Log:
* Fixed a timeout.
Modified: software_suite_v3/software/tool/tool-second-installer/trunk/tool-second-installer/Unit1.pas
===================================================================
--- software_suite_v3/software/tool/tool-second-installer/trunk/tool-second-installer/Unit1.pas 2009-09-15 08:53:53 UTC (rev 5387)
+++ software_suite_v3/software/tool/tool-second-installer/trunk/tool-second-installer/Unit1.pas 2009-09-15 09:03:27 UTC (rev 5388)
@@ -361,7 +361,7 @@
HIDTimeout := 0;
while not HIDCheck do
begin
- if not ( HIDTimeout >= 60000 ) then
+ if not ( HIDTimeout >= 60 ) then
begin
sleep(1000);
HIDCheck := Check();
|