mirror of https://github.com/stella-emu/stella.git
Fix libretro build.
This commit is contained in:
parent
9ac88c6662
commit
cc6d53d561
|
@ -803,7 +803,7 @@ void MovieCart::updateTransport()
|
||||||
if (temp == myDirectionValue)
|
if (temp == myDirectionValue)
|
||||||
myInputs.updateDirection(temp);
|
myInputs.updateDirection(temp);
|
||||||
|
|
||||||
myDirectionValue = temp;
|
myDirectionValue = temp;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
|
@ -92,7 +92,7 @@ AbstractFSNodePtr FilesystemNodeLIBRETRO::getParent() const
|
||||||
}
|
}
|
||||||
|
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
size_t FilesystemNodeLIBRETRO::read(ByteBuffer& image) const
|
size_t FilesystemNodeLIBRETRO::read(ByteBuffer& image, size_t) const
|
||||||
{
|
{
|
||||||
image = make_unique<uInt8[]>(Cartridge::maxSize());
|
image = make_unique<uInt8[]>(Cartridge::maxSize());
|
||||||
|
|
||||||
|
|
|
@ -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;
|
||||||
|
|
||||||
size_t read(ByteBuffer& image) const override;
|
size_t read(ByteBuffer& image, size_t) const override;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
string _name;
|
string _name;
|
||||||
|
|
|
@ -85,6 +85,7 @@ SOURCES_CXX := \
|
||||||
$(CORE_DIR)/emucore/CartFC.cxx \
|
$(CORE_DIR)/emucore/CartFC.cxx \
|
||||||
$(CORE_DIR)/emucore/CartFE.cxx \
|
$(CORE_DIR)/emucore/CartFE.cxx \
|
||||||
$(CORE_DIR)/emucore/CartMDM.cxx \
|
$(CORE_DIR)/emucore/CartMDM.cxx \
|
||||||
|
$(CORE_DIR)/emucore/CartMVC.cxx \
|
||||||
$(CORE_DIR)/emucore/CartMNetwork.cxx \
|
$(CORE_DIR)/emucore/CartMNetwork.cxx \
|
||||||
$(CORE_DIR)/emucore/CartSB.cxx \
|
$(CORE_DIR)/emucore/CartSB.cxx \
|
||||||
$(CORE_DIR)/emucore/CartTVBoy.cxx \
|
$(CORE_DIR)/emucore/CartTVBoy.cxx \
|
||||||
|
|
Loading…
Reference in New Issue