diff options
author | 2021-05-27 05:42:03 +1000 | |
---|---|---|
committer | 2021-05-27 05:42:03 +1000 | |
commit | 2b0f01bc3aee493b3c05cf34c15af7cf5521210a (patch) | |
tree | 19fb1f09e3d0532cf90cb61a4d3c7229a2d50996 | |
parent | d65ac3e8b3a9c0a69c9e19120b27750c169e0921 (diff) |
Version bump for 0.232mame0232
-rw-r--r-- | android-project/app/src/main/AndroidManifest.xml | 4 | ||||
-rw-r--r-- | makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/android-project/app/src/main/AndroidManifest.xml b/android-project/app/src/main/AndroidManifest.xml index b82fd81108f..999ea605d6b 100644 --- a/android-project/app/src/main/AndroidManifest.xml +++ b/android-project/app/src/main/AndroidManifest.xml @@ -4,8 +4,8 @@ --> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.mamedev.mame" - android:versionCode="231" - android:versionName="0.231" + android:versionCode="232" + android:versionName="0.232" android:installLocation="auto"> <!-- OpenGL ES 2.0 --> @@ -1755,14 +1755,14 @@ endif ifeq (posix,$(SHELLTYPE)) $(GENDIR)/version.cpp: makefile $(GENDIR)/git_desc | $(GEN_FOLDERS) - @echo '#define BARE_BUILD_VERSION "0.231"' > $@ + @echo '#define BARE_BUILD_VERSION "0.232"' > $@ @echo 'extern const char bare_build_version[];' >> $@ @echo 'extern const char build_version[];' >> $@ @echo 'const char bare_build_version[] = BARE_BUILD_VERSION;' >> $@ @echo 'const char build_version[] = BARE_BUILD_VERSION " ($(NEW_GIT_VERSION))";' >> $@ else $(GENDIR)/version.cpp: makefile $(GENDIR)/git_desc | $(GEN_FOLDERS) - @echo #define BARE_BUILD_VERSION "0.231" > $@ + @echo #define BARE_BUILD_VERSION "0.232" > $@ @echo extern const char bare_build_version[]; >> $@ @echo extern const char build_version[]; >> $@ @echo const char bare_build_version[] = BARE_BUILD_VERSION; >> $@ |