aboutsummaryrefslogtreecommitdiffstats
path: root/src/menu/UMenuBackgroundNone.pas
diff options
context:
space:
mode:
Diffstat (limited to 'src/menu/UMenuBackgroundNone.pas')
-rw-r--r--src/menu/UMenuBackgroundNone.pas8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/menu/UMenuBackgroundNone.pas b/src/menu/UMenuBackgroundNone.pas
index d4188395..6b63742a 100644
--- a/src/menu/UMenuBackgroundNone.pas
+++ b/src/menu/UMenuBackgroundNone.pas
@@ -45,8 +45,8 @@ type
private
public
- Constructor Create(const ThemedSettings: TThemeBackground); override;
- Procedure Draw; override;
+ constructor Create(const ThemedSettings: TThemeBackground); override;
+ procedure Draw; override;
end;
implementation
@@ -54,12 +54,12 @@ uses
gl,
glext;
-Constructor TMenuBackgroundNone.Create(const ThemedSettings: TThemeBackground);
+constructor TMenuBackgroundNone.Create(const ThemedSettings: TThemeBackground);
begin
inherited;
end;
-Procedure TMenuBackgroundNone.Draw;
+procedure TMenuBackgroundNone.Draw;
begin
//Do just nothing in here!
glClear(GL_DEPTH_BUFFER_BIT);