summaryrefslogtreecommitdiff
path: root/src/corelib/fpg_imgfmt_bmp.pas
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/fpg_imgfmt_bmp.pas')
-rw-r--r--src/corelib/fpg_imgfmt_bmp.pas4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/fpg_imgfmt_bmp.pas b/src/corelib/fpg_imgfmt_bmp.pas
index 00637f3b..fe827405 100644
--- a/src/corelib/fpg_imgfmt_bmp.pas
+++ b/src/corelib/fpg_imgfmt_bmp.pas
@@ -1,7 +1,7 @@
{
fpGUI - Free Pascal GUI Toolkit
- Copyright (C) 2006 - 2013 See the file AUTHORS.txt, included in this
+ Copyright (C) 2006 - 2014 See the file AUTHORS.txt, included in this
distribution, for details of the copyright.
See the file COPYING.modifiedLGPL, included in this distribution,
@@ -64,7 +64,7 @@ begin
if not fpgFileExists(AFileName) then
Exit; //==>
- AssignFile(AFile, AFileName);
+ AssignFile(AFile, fpgToOSEncoding(AFileName));
FileMode := fmOpenRead; // read-only
Reset(AFile);
AImageDataSize := FileSize(AFile);