summaryrefslogtreecommitdiff
path: root/src/corelib/fpg_main.pas
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graeme@mastermaths.co.za>2010-10-01 16:38:19 +0200
committerGraeme Geldenhuys <graeme@mastermaths.co.za>2010-10-01 16:38:19 +0200
commit70bd8e2d539c594b44d26bcf151af0b00b663854 (patch)
tree6d5cdae305cfed7f38af5177643878bb01f0cb94 /src/corelib/fpg_main.pas
parenteac1f032385a9239beac3040d0ea212fdc902784 (diff)
downloadfpGUI-70bd8e2d539c594b44d26bcf151af0b00b663854.tar.xz
bugfix for ID: 3064350 from SourceForge.
* A default font size is now set. * The Writeln() statement is now hidden under IFDEF's like it was supposed to be.
Diffstat (limited to 'src/corelib/fpg_main.pas')
-rw-r--r--src/corelib/fpg_main.pas4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/fpg_main.pas b/src/corelib/fpg_main.pas
index 39d767bf..e9b0aaba 100644
--- a/src/corelib/fpg_main.pas
+++ b/src/corelib/fpg_main.pas
@@ -1079,9 +1079,9 @@ begin
Exit; //==>
end;
- {.$IFDEF DEBUG}
+ {$IFDEF DEBUG}
Writeln('GetNamedFontDesc error: "' + afontid + '" is missing. Default is used.');
- {.$ENDIF}
+ {$ENDIF}
Result := FPG_DEFAULT_FONT_DESC;
end;