aboutsummaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authorMatthew Hoops2011-03-07 11:40:54 -0500
committerMatthew Hoops2011-03-07 11:40:54 -0500
commit4dba6962f579b136a556142e9bd2b3f83af38473 (patch)
treeb321522f5567cf125ef510727b06ad4bde9c4023 /graphics
parent9c7166ccc95af78af6c4ba1169af8babfb7697d7 (diff)
downloadscummvm-rg350-4dba6962f579b136a556142e9bd2b3f83af38473.tar.gz
scummvm-rg350-4dba6962f579b136a556142e9bd2b3f83af38473.tar.bz2
scummvm-rg350-4dba6962f579b136a556142e9bd2b3f83af38473.zip
GRAPHICS: Fix a missing 'f'
Thanks, fuzzie
Diffstat (limited to 'graphics')
-rw-r--r--graphics/fonts/winfont.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/fonts/winfont.cpp b/graphics/fonts/winfont.cpp
index bdb6133695..12509fd9e1 100644
--- a/graphics/fonts/winfont.cpp
+++ b/graphics/fonts/winfont.cpp
@@ -177,7 +177,7 @@ uint32 WinFont::getFontIndex(Common::SeekableReadStream &stream, const WinFontDi
return id;
}
- return 0xfffffff;
+ return 0xffffffff;
}
bool WinFont::loadFromFNT(const Common::String &fileName) {