aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/gfx/graphicengine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sword25/gfx/graphicengine.cpp')
-rw-r--r--engines/sword25/gfx/graphicengine.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/sword25/gfx/graphicengine.cpp b/engines/sword25/gfx/graphicengine.cpp
index edbf34ed35..f36993784d 100644
--- a/engines/sword25/gfx/graphicengine.cpp
+++ b/engines/sword25/gfx/graphicengine.cpp
@@ -196,16 +196,16 @@ uint GraphicEngine::LuaColorToARGBColor(lua_State *L, int StackIndex) {
// -----------------------------------------------------------------------------
-bool GraphicEngine::Persist(OutputPersistenceBlock &Writer) {
- Writer.Write(m_TimerActive);
+bool GraphicEngine::persist(OutputPersistenceBlock &writer) {
+ writer.write(m_TimerActive);
return true;
}
// -----------------------------------------------------------------------------
-bool GraphicEngine::Unpersist(InputPersistenceBlock &Reader) {
- Reader.Read(m_TimerActive);
- return Reader.IsGood();
+bool GraphicEngine::unpersist(InputPersistenceBlock &reader) {
+ reader.read(m_TimerActive);
+ return reader.isGood();
}
} // End of namespace Sword25