libretro: Fix fallout from latest changes.

This commit is contained in:
Stephen Anthony 2019-12-28 00:50:05 -03:30
parent 36683adec1
commit 682a35bf72
2 changed files with 2 additions and 2 deletions

View File

@ -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);

View File

@ -49,7 +49,7 @@ class FilesystemNodeLIBRETRO : public AbstractFSNode
bool getChildren(AbstractFSList& list, ListMode mode) const override;
AbstractFSNodePtr getParent() const override;
uInt32 read(ByteBuffer& image) const override;
size_t read(ByteBuffer& image) const override;
protected:
string _name;