[Scummvm-git-logs] scummvm master -> 153f06b324c686b5b7a220ca59414adab14c2032

Tkachov Tkachov at users.noreply.github.com
Wed Aug 31 07:10:44 CEST 2016


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
153f06b324 N64: Fix OutSaveFile error


Commit: 153f06b324c686b5b7a220ca59414adab14c2032
    https://github.com/scummvm/scummvm/commit/153f06b324c686b5b7a220ca59414adab14c2032
Author: Alexander Tkachev (alexander at tkachov.ru)
Date: 2016-08-31T12:07:53+06:00

Commit Message:
N64: Fix OutSaveFile error

OutSaveFile was just a typedef of WriteStream once, but now it's not.
These Out*Save classes are then wrapped with OutSaveFile, so it should
be OK to derive them from WriteStream instead of OutSaveFile.

Changed paths:
    backends/platform/n64/framfs_save_manager.h
    backends/platform/n64/pakfs_save_manager.h



diff --git a/backends/platform/n64/framfs_save_manager.h b/backends/platform/n64/framfs_save_manager.h
index aa26942..f240428 100644
--- a/backends/platform/n64/framfs_save_manager.h
+++ b/backends/platform/n64/framfs_save_manager.h
@@ -65,7 +65,7 @@ public:
 	}
 };
 
-class OutFRAMSave : public Common::OutSaveFile {
+class OutFRAMSave : public Common::WriteStream {
 private:
 	FRAMFILE *fd;
 
diff --git a/backends/platform/n64/pakfs_save_manager.h b/backends/platform/n64/pakfs_save_manager.h
index 31aa014..16b6330 100644
--- a/backends/platform/n64/pakfs_save_manager.h
+++ b/backends/platform/n64/pakfs_save_manager.h
@@ -65,7 +65,7 @@ public:
 	}
 };
 
-class OutPAKSave : public Common::OutSaveFile {
+class OutPAKSave : public Common::WriteStream {
 private:
 	PAKFILE *fd;
 





More information about the Scummvm-git-logs mailing list