diff --git a/Makefile b/Makefile index 695e493d7..771125958 100644 --- a/Makefile +++ b/Makefile @@ -146,8 +146,8 @@ ifdef HAVE_GCC CFLAGS_PROFILE_USE += -fprofile-use -fprofile-dir=$(PROFILE_OUT) LDFLAGS_PROFILE_GENERATE += -fprofile-generate STELLA_PROFILE_GENERATE := $(STELLA_PROFILE_GENERATE) && \ - rm -fr $(PROFILE_OUT)/$(OBJECT_ROOT_PROFILE_USE) && \ - mv $(PROFILE_OUT)/$(OBJECT_ROOT_PROFILE_GENERERATE) $(PROFILE_OUT)/$(OBJECT_ROOT_PROFILE_USE) + (rm -fr $(PROFILE_OUT)/$(OBJECT_ROOT_PROFILE_USE) || true) && \ + (mv $(PROFILE_OUT)/$(OBJECT_ROOT_PROFILE_GENERERATE) $(PROFILE_OUT)/$(OBJECT_ROOT_PROFILE_USE) || true) endif all: $(EXECUTABLE) diff --git a/src/emucore/OSystemStandalone.cxx b/src/emucore/OSystemStandalone.cxx index de16081b9..d017408dd 100644 --- a/src/emucore/OSystemStandalone.cxx +++ b/src/emucore/OSystemStandalone.cxx @@ -48,3 +48,8 @@ shared_ptr OSystemStandalone::getHighscoreRep { return shared_ptr(myStellaDb, &myStellaDb->highscoreRepository()); } + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +void OSystemStandalone::getBaseDirectories(string& basedir, string& homedir, + bool useappdir, const string& usedir) +{} diff --git a/src/emucore/OSystemStandalone.hxx b/src/emucore/OSystemStandalone.hxx index 40e2d1ce0..031f765e2 100644 --- a/src/emucore/OSystemStandalone.hxx +++ b/src/emucore/OSystemStandalone.hxx @@ -40,6 +40,9 @@ class OSystemStandalone : public OSystem string describePresistence() override; + void getBaseDirectories(string& basedir, string& homedir, + bool useappdir, const string& usedir) override; + private: shared_ptr myStellaDb; diff --git a/src/gui/WhatsNewDialog.cxx b/src/gui/WhatsNewDialog.cxx index ab9d3c7c3..356f773c0 100644 --- a/src/gui/WhatsNewDialog.cxx +++ b/src/gui/WhatsNewDialog.cxx @@ -60,7 +60,10 @@ WhatsNewDialog::WhatsNewDialog(OSystem& osystem, DialogContainer& parent, add(ypos, "improved controller mappings for Paddles"); add(ypos, "improved controller mappings for Driving controllers"); add(ypos, "enhanced support for CDFJ+ bankswitching type"); - + add(ypos, "added MovieCart support"); + add(ypos, "keep multiple dump files when dumping to SD"); + add(ypos, "removed deadzone from USB game controllers"); + add(ypos, "add opt-out for overclocking to the settings file"); #else if(version < "6.6") {