aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/Base/BFontStorage.cpp
diff options
context:
space:
mode:
authorEinar Johan Trøan Sømåen2012-06-22 13:56:51 +0200
committerEinar Johan Trøan Sømåen2012-06-22 13:56:51 +0200
commit5a5fd609f13ef8754fb256d7ed3d774f51100ebb (patch)
treeee700071ac48f7a3b559382b072d00a68a6ff6a4 /engines/wintermute/Base/BFontStorage.cpp
parent9b26ea4f7f363c187a2f4be21133d9c77fb46bd6 (diff)
downloadscummvm-rg350-5a5fd609f13ef8754fb256d7ed3d774f51100ebb.tar.gz
scummvm-rg350-5a5fd609f13ef8754fb256d7ed3d774f51100ebb.tar.bz2
scummvm-rg350-5a5fd609f13ef8754fb256d7ed3d774f51100ebb.zip
WINTERMUTE: Rename the functions and arguments in BPersistMgr
Diffstat (limited to 'engines/wintermute/Base/BFontStorage.cpp')
-rw-r--r--engines/wintermute/Base/BFontStorage.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/wintermute/Base/BFontStorage.cpp b/engines/wintermute/Base/BFontStorage.cpp
index 0d00f89e60..a96809d194 100644
--- a/engines/wintermute/Base/BFontStorage.cpp
+++ b/engines/wintermute/Base/BFontStorage.cpp
@@ -142,14 +142,14 @@ HRESULT CBFontStorage::RemoveFont(CBFont *Font) {
//////////////////////////////////////////////////////////////////////////
-HRESULT CBFontStorage::Persist(CBPersistMgr *PersistMgr) {
+HRESULT CBFontStorage::Persist(CBPersistMgr *persistMgr) {
- if (!PersistMgr->_saving) Cleanup(false);
+ if (!persistMgr->_saving) Cleanup(false);
- PersistMgr->Transfer(TMEMBER(Game));
- _fonts.Persist(PersistMgr);
+ persistMgr->transfer(TMEMBER(Game));
+ _fonts.Persist(persistMgr);
- if (!PersistMgr->_saving) InitFreeType();
+ if (!persistMgr->_saving) InitFreeType();
return S_OK;
}