mirror of https://github.com/stella-emu/stella.git
libretro: Fix fallout from latest changes.
This commit is contained in:
parent
36683adec1
commit
682a35bf72
|
@ -98,7 +98,7 @@ AbstractFSNodePtr FilesystemNodeLIBRETRO::getParent() const
|
||||||
}
|
}
|
||||||
|
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
uInt32 FilesystemNodeLIBRETRO::read(ByteBuffer& image) const
|
size_t FilesystemNodeLIBRETRO::read(ByteBuffer& image) const
|
||||||
{
|
{
|
||||||
image = make_unique<uInt8[]>(512 * 1024);
|
image = make_unique<uInt8[]>(512 * 1024);
|
||||||
|
|
||||||
|
|
|
@ -49,7 +49,7 @@ class FilesystemNodeLIBRETRO : public AbstractFSNode
|
||||||
bool getChildren(AbstractFSList& list, ListMode mode) const override;
|
bool getChildren(AbstractFSList& list, ListMode mode) const override;
|
||||||
AbstractFSNodePtr getParent() const override;
|
AbstractFSNodePtr getParent() const override;
|
||||||
|
|
||||||
uInt32 read(ByteBuffer& image) const override;
|
size_t read(ByteBuffer& image) const override;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
string _name;
|
string _name;
|
||||||
|
|
Loading…
Reference in New Issue