Skip to content

Commit

Permalink
N64: Fix OutSaveFile error
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Tkachov committed Aug 31, 2016
1 parent d9fb4a2 commit 153f06b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backends/platform/n64/framfs_save_manager.h
Expand Up @@ -65,7 +65,7 @@ class InFRAMSave : public Common::InSaveFile {
}
};

class OutFRAMSave : public Common::OutSaveFile {
class OutFRAMSave : public Common::WriteStream {
private:
FRAMFILE *fd;

Expand Down
2 changes: 1 addition & 1 deletion backends/platform/n64/pakfs_save_manager.h
Expand Up @@ -65,7 +65,7 @@ class InPAKSave : public Common::InSaveFile {
}
};

class OutPAKSave : public Common::OutSaveFile {
class OutPAKSave : public Common::WriteStream {
private:
PAKFILE *fd;

Expand Down

0 comments on commit 153f06b

Please sign in to comment.