diff options
author | 2021-01-26 15:43:24 +1100 | |
---|---|---|
committer | 2021-01-26 15:43:24 +1100 | |
commit | 140f44693319b3b8842c76584822bd63eb36ce1c (patch) | |
tree | 508f26f45cfdc58719f3fe6a8d5b0431e1745f2e | |
parent | 0c5e9a05600f1628495ca43832bddc02053bb928 (diff) |
Version bumpmame0228
-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 d23fa226f49..52aac8fe83e 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="227" - android:versionName="0.227" + android:versionCode="228" + android:versionName="0.228" android:installLocation="auto"> <!-- OpenGL ES 2.0 --> @@ -1743,14 +1743,14 @@ endif ifeq (posix,$(SHELLTYPE)) $(GENDIR)/version.cpp: makefile $(GENDIR)/git_desc | $(GEN_FOLDERS) - @echo '#define BARE_BUILD_VERSION "0.227"' > $@ + @echo '#define BARE_BUILD_VERSION "0.228"' > $@ @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.227" > $@ + @echo #define BARE_BUILD_VERSION "0.228" > $@ @echo extern const char bare_build_version[]; >> $@ @echo extern const char build_version[]; >> $@ @echo const char bare_build_version[] = BARE_BUILD_VERSION; >> $@ |