diff options
author | 2020-06-26 15:55:07 +1000 | |
---|---|---|
committer | 2020-06-26 15:55:07 +1000 | |
commit | 6d50d60a43b335d71d9a2d0496deeb6973658423 (patch) | |
tree | 17fafd12fb534b16a6502baf31d09cb950f037ec | |
parent | 8bf71eec3b9a97ce7a04a2df6bd5d9121a8f6874 (diff) |
version bump (nw)mame0222
-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 412d337f6d4..eaf47a66505 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="221" - android:versionName="0.221" + android:versionCode="222" + android:versionName="0.222" android:installLocation="auto"> <!-- OpenGL ES 2.0 --> @@ -1704,14 +1704,14 @@ endif ifeq (posix,$(SHELLTYPE)) $(GENDIR)/version.cpp: makefile $(GENDIR)/git_desc | $(GEN_FOLDERS) - @echo '#define BARE_BUILD_VERSION "0.221"' > $@ + @echo '#define BARE_BUILD_VERSION "0.222"' > $@ @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.221" > $@ + @echo #define BARE_BUILD_VERSION "0.222" > $@ @echo extern const char bare_build_version[]; >> $@ @echo extern const char build_version[]; >> $@ @echo const char bare_build_version[] = BARE_BUILD_VERSION; >> $@ |