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.
This commit is contained in:
Alexander Tkachev 2016-08-31 12:07:53 +06:00
parent d9fb4a2bc5
commit 153f06b324
2 changed files with 2 additions and 2 deletions

View file

@ -65,7 +65,7 @@ public:
}
};
class OutFRAMSave : public Common::OutSaveFile {
class OutFRAMSave : public Common::WriteStream {
private:
FRAMFILE *fd;

View file

@ -65,7 +65,7 @@ public:
}
};
class OutPAKSave : public Common::OutSaveFile {
class OutPAKSave : public Common::WriteStream {
private:
PAKFILE *fd;