Skip to content

Commit 60005c8

Browse files
authored
Merge branch 'master' into debugger
2 parents 1bdfa86 + 0524b10 commit 60005c8

File tree

306 files changed

+14332
-6349
lines changed

Some content is hidden

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

306 files changed

+14332
-6349
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; });

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

+3
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,9 @@ available:
197197
Prints the corresponding argument as an octal number with optional
198198
minimum field width and zero fill using lowercase letters.
199199
%[0][<n>]x
200+
Prints the corresponding argument as a hexadecimal number with
201+
optional minimum field width and zero fill using lowercase letters.
202+
%[0][<n>]X
200203
Prints the corresponding argument as a hexadecimal number with
201204
optional minimum field width and zero fill using uppercase letters.
202205
\%%

docs/swlist/n64jp.csv

-236
This file was deleted.

docs/swlist/readme.txt

-10
This file was deleted.

0 commit comments

Comments
 (0)