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:
parent
d9fb4a2bc5
commit
153f06b324
2 changed files with 2 additions and 2 deletions
|
@ -65,7 +65,7 @@ public:
|
|||
}
|
||||
};
|
||||
|
||||
class OutFRAMSave : public Common::OutSaveFile {
|
||||
class OutFRAMSave : public Common::WriteStream {
|
||||
private:
|
||||
FRAMFILE *fd;
|
||||
|
||||
|
|
|
@ -65,7 +65,7 @@ public:
|
|||
}
|
||||
};
|
||||
|
||||
class OutPAKSave : public Common::OutSaveFile {
|
||||
class OutPAKSave : public Common::WriteStream {
|
||||
private:
|
||||
PAKFILE *fd;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue