Skip to content

Commit

Permalink
Merge tag 'mame0248' into rel248
Browse files Browse the repository at this point in the history
MAME 0.248
  • Loading branch information
mahlemiut committed Sep 27, 2022
2 parents 7f96dcb + 2d3d0de commit d8b5ffb
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions android-project/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.mamedev.mame"
android:versionCode="247"
android:versionName="0.247"
android:versionCode="248"
android:versionName="0.248"
android:installLocation="auto">

<!-- OpenGL ES 2.0 -->
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@
# built documents.
#
# The short X.Y version.
version = '0.247'
version = '0.248'
# The full version, including alpha/beta/rc tags.
release = '0.247'
release = '0.248'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions docs/source/usingmame/mamemenus.rst
Original file line number Diff line number Diff line change
Expand Up @@ -267,8 +267,8 @@ your current settings. Recognised input devices depend on the
enabled or disabled using the :ref:`mouse <mame-commandline-nomouse>`,
:ref:`lightgun <mame-commandline-nolightgun>` and :ref:`joystick
<mame-commandline-nojoystick>` options. You can reach the Input Devices menu by
selecting **Input Devices** from the :ref:`main menu <menus-main>` or the
General Settings menu.
selecting **Input Devices** from the :ref:`Input Settings menu
<menus-inputopts>` or the General Settings menu.

Input devices are grouped by device class (for example keyboards or light guns).
You can move between device classes using the **Next Group** and **Previous
Expand Down
4 changes: 2 additions & 2 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -1579,7 +1579,7 @@ endif

ifeq (posix,$(SHELLTYPE))
$(GENDIR)/version.cpp: makefile $(GENDIR)/git_desc | $(GEN_FOLDERS)
@echo '#define BARE_BUILD_VERSION "0.247"' > $@
@echo '#define BARE_BUILD_VERSION "0.248"' > $@
@echo '#define BARE_VCS_REVISION "$(NEW_GIT_VERSION)"' >> $@
@echo 'extern const char bare_build_version[];' >> $@
@echo 'extern const char bare_vcs_revision[];' >> $@
Expand All @@ -1589,7 +1589,7 @@ $(GENDIR)/version.cpp: makefile $(GENDIR)/git_desc | $(GEN_FOLDERS)
@echo 'const char build_version[] = BARE_BUILD_VERSION "W (" BARE_VCS_REVISION ")";' >> $@
else
$(GENDIR)/version.cpp: makefile $(GENDIR)/git_desc | $(GEN_FOLDERS)
@echo #define BARE_BUILD_VERSION "0.247" > $@
@echo #define BARE_BUILD_VERSION "0.248" > $@
@echo #define BARE_VCS_REVISION "$(NEW_GIT_VERSION)" >> $@
@echo extern const char bare_build_version[]; >> $@
@echo extern const char bare_vcs_revision[]; >> $@
Expand Down
2 changes: 1 addition & 1 deletion src/osd/modules/diagnostics/diagnostics_win32.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ bool symbol_manager::parse_sym_line(const char *line, uintptr_t &address, std::s
*/

// first look for a (ty) entry
char *type = strstr(line, "(ty 20)");
const char *type = strstr(line, "(ty 20)");
if (type == nullptr)
type = strstr(line, "(ty 20)");

Expand Down

0 comments on commit d8b5ffb

Please sign in to comment.