mirror of https://github.com/stella-emu/stella.git
libretro: fix build issues with new bezel code.
This commit is contained in:
parent
3f05523e16
commit
47661d0acd
|
@ -60,7 +60,7 @@
|
||||||
#include "StateManager.hxx"
|
#include "StateManager.hxx"
|
||||||
#include "TimerManager.hxx"
|
#include "TimerManager.hxx"
|
||||||
#ifdef GUI_SUPPORT
|
#ifdef GUI_SUPPORT
|
||||||
#include "HighScoresManager.hxx"
|
#include "HighScoresManager.hxx"
|
||||||
#endif
|
#endif
|
||||||
#include "Version.hxx"
|
#include "Version.hxx"
|
||||||
#include "TIA.hxx"
|
#include "TIA.hxx"
|
||||||
|
|
|
@ -100,6 +100,7 @@ class FBBackendLIBRETRO : public FBBackend
|
||||||
void showCursor(bool) override { }
|
void showCursor(bool) override { }
|
||||||
bool fullScreen() const override { return true; }
|
bool fullScreen() const override { return true; }
|
||||||
void getRGB(uInt32, uInt8*, uInt8*, uInt8*) const override { }
|
void getRGB(uInt32, uInt8*, uInt8*, uInt8*) const override { }
|
||||||
|
void getRGBA(uInt32, uInt8*, uInt8*, uInt8*, uInt8*) const override { }
|
||||||
void readPixels(uInt8*, size_t, const Common::Rect&) const override { }
|
void readPixels(uInt8*, size_t, const Common::Rect&) const override { }
|
||||||
bool isCurrentWindowPositioned() const override { return true; }
|
bool isCurrentWindowPositioned() const override { return true; }
|
||||||
Common::Point getCurrentWindowPos() const override { return Common::Point{}; }
|
Common::Point getCurrentWindowPos() const override { return Common::Point{}; }
|
||||||
|
|
|
@ -12,6 +12,7 @@ SOURCES_CXX := \
|
||||||
$(CORE_DIR)/common/AudioQueue.cxx \
|
$(CORE_DIR)/common/AudioQueue.cxx \
|
||||||
$(CORE_DIR)/common/AudioSettings.cxx \
|
$(CORE_DIR)/common/AudioSettings.cxx \
|
||||||
$(CORE_DIR)/common/Base.cxx \
|
$(CORE_DIR)/common/Base.cxx \
|
||||||
|
$(CORE_DIR)/common/Bezel.cxx \
|
||||||
$(CORE_DIR)/common/DevSettingsHandler.cxx \
|
$(CORE_DIR)/common/DevSettingsHandler.cxx \
|
||||||
$(CORE_DIR)/common/FpsMeter.cxx \
|
$(CORE_DIR)/common/FpsMeter.cxx \
|
||||||
$(CORE_DIR)/common/FSNodeZIP.cxx \
|
$(CORE_DIR)/common/FSNodeZIP.cxx \
|
||||||
|
|
Loading…
Reference in New Issue