[Scummvm-cvs-logs] CVS: scummvm/sword2 save_rest.cpp,1.71,1.72
Max Horn
fingolfin at users.sourceforge.net
Tue May 10 16:21:06 CEST 2005
Update of /cvsroot/scummvm/scummvm/sword2
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22345/sword2
Modified Files:
save_rest.cpp
Log Message:
Moved (In/Out)SaveFile(Manager) and Timer to namespace Common
Index: save_rest.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sword2/save_rest.cpp,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -d -r1.71 -r1.72
--- save_rest.cpp 2 May 2005 05:41:01 -0000 1.71
+++ save_rest.cpp 10 May 2005 23:17:38 -0000 1.72
@@ -183,7 +183,7 @@
sprintf(saveFileName, "%s.%.3d", _targetName.c_str(), slotNo);
- OutSaveFile *out;
+ Common::OutSaveFile *out;
if (!(out = _saveFileMan->openForSaving(saveFileName))) {
return SR_ERR_FILEOPEN;
@@ -261,7 +261,7 @@
sprintf(saveFileName, "%s.%.3d", _targetName.c_str(), slotNo);
- InSaveFile *in;
+ Common::InSaveFile *in;
if (!(in = _saveFileMan->openForLoading(saveFileName))) {
// error: couldn't open file
@@ -405,7 +405,7 @@
sprintf(saveFileName, "%s.%.3d", _targetName.c_str(), slotNo);
- InSaveFile *in;
+ Common::InSaveFile *in;
if (!(in = _saveFileMan->openForLoading(saveFileName))) {
return SR_ERR_FILEOPEN;
@@ -432,7 +432,7 @@
sprintf(saveFileName, "%s.%.3d", _targetName.c_str(), slotNo);
- InSaveFile *in;
+ Common::InSaveFile *in;
if (!(in = _saveFileMan->openForLoading(saveFileName))) {
return false;
More information about the Scummvm-git-logs
mailing list