mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-27 20:11:02 +02:00
+ 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:
parent
f19e69e7e8
commit
d135a2d9ea
@ -828,7 +828,7 @@ end;
|
|||||||
{$IFDEF OS_AMIGA}
|
{$IFDEF OS_AMIGA}
|
||||||
begin
|
begin
|
||||||
{ AmigaOS Delay() wait's argument in 1/50 seconds }
|
{ AmigaOS Delay() wait's argument in 1/50 seconds }
|
||||||
DOSLib.Delay (5);
|
DOSLib.Delay(2);
|
||||||
end;
|
end;
|
||||||
{$ENDIF OS_AMIGA}
|
{$ENDIF OS_AMIGA}
|
||||||
|
|
||||||
|
@ -78,7 +78,11 @@ const
|
|||||||
{$ifdef Unix}
|
{$ifdef Unix}
|
||||||
AllFiles = '*';
|
AllFiles = '*';
|
||||||
{$else}
|
{$else}
|
||||||
AllFiles = '*.*';
|
{$ifdef OS_AMIGA}
|
||||||
|
AllFiles = '*';
|
||||||
|
{$else}
|
||||||
|
AllFiles = '*.*';
|
||||||
|
{$endif}
|
||||||
{$endif}
|
{$endif}
|
||||||
|
|
||||||
type
|
type
|
||||||
|
Loading…
Reference in New Issue
Block a user