diff options
Diffstat (limited to 'engines/wintermute/Base/BFontStorage.cpp')
-rw-r--r-- | engines/wintermute/Base/BFontStorage.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/wintermute/Base/BFontStorage.cpp b/engines/wintermute/Base/BFontStorage.cpp index b34e24c286..0d00f89e60 100644 --- a/engines/wintermute/Base/BFontStorage.cpp +++ b/engines/wintermute/Base/BFontStorage.cpp @@ -102,9 +102,9 @@ CBFont *CBFontStorage::AddFont(const char *Filename) { /*
CBFont* font = new CBFont(Game);
- if(!font) return NULL;
+ if (!font) return NULL;
- if(FAILED(font->LoadFile(Filename))){
+ if (FAILED(font->LoadFile(Filename))) {
delete font;
return NULL;
}
|