aboutsummaryrefslogtreecommitdiffstats
path: root/unicode/src/screens/UScreenLoading.pas
diff options
context:
space:
mode:
Diffstat (limited to 'unicode/src/screens/UScreenLoading.pas')
-rw-r--r--unicode/src/screens/UScreenLoading.pas9
1 files changed, 4 insertions, 5 deletions
diff --git a/unicode/src/screens/UScreenLoading.pas b/unicode/src/screens/UScreenLoading.pas
index 429a3261..e52823be 100644
--- a/unicode/src/screens/UScreenLoading.pas
+++ b/unicode/src/screens/UScreenLoading.pas
@@ -46,16 +46,15 @@ type
Fadeout: boolean;
constructor Create; override;
procedure onShow; override;
- function ParseInput(PressedKey: cardinal; CharCode: UCS4Char; PressedDown: boolean): boolean; override;
+ function ParseInput(PressedKey: Cardinal; CharCode: UCS4Char; PressedDown: Boolean): Boolean; override;
end;
implementation
-uses
- UGraphic,
- UTime;
+uses UGraphic,
+ UTime;
-function TScreenLoading.ParseInput(PressedKey: cardinal; CharCode: UCS4Char; PressedDown: boolean): boolean;
+function TScreenLoading.ParseInput(PressedKey: Cardinal; CharCode: UCS4Char; PressedDown: Boolean): Boolean;
begin
Result := true;
end;