diff options
author | Paul Gilbert | 2016-05-11 21:17:28 -0400 |
---|---|---|
committer | Paul Gilbert | 2016-07-10 16:39:19 -0400 |
commit | 7700923298da4002a5d0baf28913a46e7e0fcf59 (patch) | |
tree | 2c40cf0ca153f6694675d9a524a3ad358d6faf7c /engines/titanic/support | |
parent | 01320c06cbb6a25ee226c1037152d5348b73cd68 (diff) | |
download | scummvm-rg350-7700923298da4002a5d0baf28913a46e7e0fcf59.tar.gz scummvm-rg350-7700923298da4002a5d0baf28913a46e7e0fcf59.tar.bz2 scummvm-rg350-7700923298da4002a5d0baf28913a46e7e0fcf59.zip |
TITANIC: Change CFileReader to CExeResoucres
Diffstat (limited to 'engines/titanic/support')
-rw-r--r-- | engines/titanic/support/exe_resources.cpp (renamed from engines/titanic/support/file_reader.cpp) | 6 | ||||
-rw-r--r-- | engines/titanic/support/exe_resources.h (renamed from engines/titanic/support/file_reader.h) | 10 |
2 files changed, 8 insertions, 8 deletions
diff --git a/engines/titanic/support/file_reader.cpp b/engines/titanic/support/exe_resources.cpp index f31d72bda5..91139dce3d 100644 --- a/engines/titanic/support/file_reader.cpp +++ b/engines/titanic/support/exe_resources.cpp @@ -20,15 +20,15 @@ * */ -#include "titanic/support/file_reader.h" +#include "titanic/support/exe_resources.h" namespace Titanic { -CFileReader::CFileReader() : _owner(nullptr), _field4(0), _field8(0), +CExeResources::CExeResources() : _owner(nullptr), _field4(0), _field8(0), _fieldC(0), _field10(0), _field14(0), _field18(0) { } -void CFileReader::reset(CScriptHandler *owner, int val1, int val2) { +void CExeResources::reset(CScriptHandler *owner, int val1, int val2) { _owner = owner; _field18 = val2; } diff --git a/engines/titanic/support/file_reader.h b/engines/titanic/support/exe_resources.h index 42ab43c294..48b48d4933 100644 --- a/engines/titanic/support/file_reader.h +++ b/engines/titanic/support/exe_resources.h @@ -20,8 +20,8 @@ * */ -#ifndef TITANIC_FILE_READER_H -#define TITANIC_FILE_READER_H +#ifndef TITANIC_EXE_RESOURCES_H +#define TITANIC_EXE_RESOURCES_H #include "common/file.h" @@ -29,7 +29,7 @@ namespace Titanic { class CScriptHandler; -class CFileReader { +class CExeResources { public: CScriptHandler *_owner; int _field4; @@ -39,7 +39,7 @@ public: int _field14; int _field18; public: - CFileReader(); + CExeResources(); void reset(CScriptHandler *owner, int val1, int val2); @@ -48,4 +48,4 @@ public: } // End of namespace Titanic -#endif /* TITANIC_FILE_READER_H */ +#endif /* TITANIC_EXE_RESOURCES_H */ |