Merge tag 'mame0206'

MAME 0.206
This commit is contained in:
Vas Crabb 2019-01-30 16:14:50 +11:00
commit bfbf551c5c
3 changed files with 5 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="205"
android:versionName="0.205"
android:versionCode="206"
android:versionName="0.206"
android:installLocation="auto">
<!-- OpenGL ES 2.0 -->

View File

@ -1608,14 +1608,14 @@ endif
ifeq (posix,$(SHELLTYPE))
$(GENDIR)/version.cpp: $(GENDIR)/git_desc | $(GEN_FOLDERS)
@echo '#define BARE_BUILD_VERSION "0.205"' > $@
@echo '#define BARE_BUILD_VERSION "0.206"' > $@
@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: $(GENDIR)/git_desc
@echo #define BARE_BUILD_VERSION "0.205" > $@
@echo #define BARE_BUILD_VERSION "0.206" > $@
@echo extern const char bare_build_version[]; >> $@
@echo extern const char build_version[]; >> $@
@echo const char bare_build_version[] = BARE_BUILD_VERSION; >> $@

View File

@ -52,8 +52,7 @@ DEFINE_DEVICE_TYPE(SPG28X, spg28x_device, "spg28x", "SPG280-series System-on-a-C
#define LOG_PPU (LOG_PPU_READS | LOG_PPU_WRITES | LOG_UNKNOWN_PPU)
#define LOG_ALL (LOG_IO | LOG_SPU | LOG_PPU | LOG_VLINES | LOG_SEGMENT | LOG_FIQ)
#define VERBOSE (LOG_ALL & ~LOG_SPU)
//#define VERBOSE (0)
//#define VERBOSE (LOG_ALL & ~LOG_SPU)
#include "logmacro.h"
#define SPG_DEBUG_VIDEO (0)