Bump version to 0.253

This commit is contained in:
Vas Crabb 2023-03-30 01:05:56 +11:00
parent 664f210775
commit b6d9756c5e
3 changed files with 6 additions and 6 deletions

View File

@ -4,8 +4,8 @@
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.mamedev.mame"
android:versionCode="252"
android:versionName="0.252"
android:versionCode="253"
android:versionName="0.253"
android:installLocation="auto">
<!-- OpenGL ES 2.0 -->

View File

@ -1561,7 +1561,7 @@ endif
ifeq (posix,$(SHELLTYPE))
$(GENDIR)/version.cpp: makefile $(GENDIR)/git_desc | $(GEN_FOLDERS)
@echo '#define BARE_BUILD_VERSION "0.252"' > $@
@echo '#define BARE_BUILD_VERSION "0.253"' > $@
@echo '#define BARE_VCS_REVISION "$(NEW_GIT_VERSION)"' >> $@
@echo 'extern const char bare_build_version[];' >> $@
@echo 'extern const char bare_vcs_revision[];' >> $@
@ -1571,7 +1571,7 @@ $(GENDIR)/version.cpp: makefile $(GENDIR)/git_desc | $(GEN_FOLDERS)
@echo 'const char build_version[] = BARE_BUILD_VERSION " (" BARE_VCS_REVISION ")";' >> $@
else
$(GENDIR)/version.cpp: makefile $(GENDIR)/git_desc | $(GEN_FOLDERS)
@echo #define BARE_BUILD_VERSION "0.252" > $@
@echo #define BARE_BUILD_VERSION "0.253" > $@
@echo #define BARE_VCS_REVISION "$(NEW_GIT_VERSION)" >> $@
@echo extern const char bare_build_version[]; >> $@
@echo extern const char bare_vcs_revision[]; >> $@

View File

@ -90,7 +90,7 @@ public:
{
return m_dinput->EnumDevices(
devclass,
&di_emun_devices_cb<std::remove_reference_t<T> >,
&di_enum_devices_cb<std::remove_reference_t<T> >,
LPVOID(&callback),
DIEDFL_ATTACHEDONLY);
}
@ -123,7 +123,7 @@ private:
static std::string make_id(LPCDIDEVICEINSTANCE instance);
template <typename T>
static BOOL CALLBACK di_emun_devices_cb(LPCDIDEVICEINSTANCE instance, LPVOID ref)
static BOOL CALLBACK di_enum_devices_cb(LPCDIDEVICEINSTANCE instance, LPVOID ref)
{
return (*reinterpret_cast<T *>(ref))(instance);
}