Skip to content

Commit ac9d034

Browse files
authored
Merge pull request #475 from sonninnos/0264
Update 0.264
2 parents 6d6d21f + 4048301 commit ac9d034

File tree

1,317 files changed

+54527
-26587
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,317 files changed

+54527
-26587
lines changed

3rdparty/bx/src/debug.cpp

+7-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,13 @@ namespace bx
4343
// NativeClient: NaCl module load failed: Validation failure. File violates Native Client safety rules.
4444
__asm__ ("int $3");
4545
#elif BX_PLATFORM_EMSCRIPTEN
46-
emscripten_log(EM_LOG_CONSOLE | EM_LOG_ERROR | EM_LOG_C_STACK | EM_LOG_JS_STACK | EM_LOG_DEMANGLE, "debugBreak!");
46+
emscripten_log(0
47+
| EM_LOG_CONSOLE
48+
| EM_LOG_ERROR
49+
| EM_LOG_C_STACK
50+
| EM_LOG_JS_STACK
51+
, "debugBreak!"
52+
);
4753
// Doing emscripten_debugger() disables asm.js validation due to an emscripten bug
4854
//emscripten_debugger();
4955
EM_ASM({ debugger; });

android-project/app/src/main/AndroidManifest.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
-->
55
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
66
package="org.mamedev.mame"
7-
android:versionCode="263"
8-
android:versionName="0.263"
7+
android:versionCode="264"
8+
android:versionName="0.264"
99
android:installLocation="auto">
1010

1111
<!-- OpenGL ES 2.0 -->

docs/source/commandline/commandline-all.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -3989,7 +3989,7 @@ Core Misc Options
39893989
39903990
Specifies the type of UI to use, either ``simple`` or ``cabinet``.
39913991
3992-
The default is Cabinet (**-ui cabinet**).
3992+
The default is cabinet (**-ui cabinet**).
39933993
39943994
Example:
39953995
.. code-block:: bash
@@ -4025,9 +4025,9 @@ Core Misc Options
40254025
40264026
**\-[no]ui_mouse**
40274027
4028-
Displays a mouse cursor when using the built-in UI for MAME.
4028+
Displays a mouse cursor when using the built-in MAME user interface.
40294029
4030-
The default is (**-noui_mouse**).
4030+
The default is ON (**-ui_mouse**).
40314031
40324032
.. _mame-commandline-language:
40334033

docs/source/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@
6363
# built documents.
6464
#
6565
# The short X.Y version.
66-
version = '0.263'
66+
version = '0.264'
6767
# The full version, including alpha/beta/rc tags.
68-
release = '0.263'
68+
release = '0.264'
6969

7070
# The language for content autogenerated by Sphinx. Refer to documentation
7171
# for a list of supported languages.

docs/source/debugger/general.rst

+14-7
Original file line numberDiff line numberDiff line change
@@ -190,15 +190,22 @@ available:
190190

191191
%c
192192
Prints the corresponding argument as an 8-bit character.
193-
%[0][<n>]d
193+
%[-][0][<n>]d
194194
Prints the corresponding argument as a decimal number with optional
195-
minimum field width and zero fill.
196-
%[0][<n>]o
195+
left justification, zero fill and minimum field width.
196+
%[-][0][<n>]o
197197
Prints the corresponding argument as an octal number with optional
198-
minimum field width and zero fill using lowercase letters.
199-
%[0][<n>]x
200-
Prints the corresponding argument as a hexadecimal number with
201-
optional minimum field width and zero fill using uppercase letters.
198+
left justification, zero fill and minimum field width.
199+
%[-][0][<n>]x
200+
Prints the corresponding argument as a lowercase hexadecimal number
201+
with optional left justification, zero fill and minimum field width.
202+
%[-][0][<n>]X
203+
Prints the corresponding argument as an uppercase hexadecimal number
204+
with optional left justification, zero fill and minimum field width.
205+
%[-][<n>][.[<n>]]s
206+
Prints a null-terminated string of 8-bit characters from the address
207+
and address space given by the corresponding argument, with optional
208+
left justification, minimum and maximum field widths.
202209
\%%
203210
Prints a literal percent symbol.
204211
\\n

docs/source/initialsetup/compilingmame.rst

+4
Original file line numberDiff line numberDiff line change
@@ -559,6 +559,10 @@ Optional features
559559
TOOLS
560560
Set to **1** to build additional tools along with the emulator, including
561561
**unidasm**, **chdman**, **romcmp**, and **srcclean**.
562+
EMULATOR
563+
When set to **0**, the main emulator target will not be created. This is
564+
intended to be used in conjunction with setting **TOOLS** to **1** to build
565+
the additional tools without building the emulator.
562566
NO_OPENGL
563567
Set to **1** to disable building the OpenGL video output module.
564568
NO_USE_PORTAUDIO

docs/swlist/n64jp.csv

-236
This file was deleted.

docs/swlist/readme.txt

-10
This file was deleted.

0 commit comments

Comments
 (0)