+ minor Amiga/MorphOS FV tweaks:

* GiveUpTimeSlice() now Sleep()s for shorter time
  * Amiga "all files" are "*" and not "*.*", this fixes file dialogs somewhat

git-svn-id: trunk@11970 -
This commit is contained in:
Károly Balogh 2008-10-24 16:56:59 +00:00
parent f19e69e7e8
commit d135a2d9ea
2 changed files with 6 additions and 2 deletions

View File

@ -828,7 +828,7 @@ end;
{$IFDEF OS_AMIGA}
begin
{ AmigaOS Delay() wait's argument in 1/50 seconds }
DOSLib.Delay (5);
DOSLib.Delay(2);
end;
{$ENDIF OS_AMIGA}

View File

@ -78,7 +78,11 @@ const
{$ifdef Unix}
AllFiles = '*';
{$else}
AllFiles = '*.*';
{$ifdef OS_AMIGA}
AllFiles = '*';
{$else}
AllFiles = '*.*';
{$endif}
{$endif}
type