Skip to content

Commit

Permalink
Merge pull request #475 from sonninnos/0264
Browse files Browse the repository at this point in the history
Update 0.264
  • Loading branch information
sonninnos authored Apr 1, 2024
2 parents 6d6d21f + 4048301 commit ac9d034
Show file tree
Hide file tree
Showing 1,317 changed files with 54,527 additions and 26,587 deletions.
8 changes: 7 additions & 1 deletion 3rdparty/bx/src/debug.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,13 @@ namespace bx
// NativeClient: NaCl module load failed: Validation failure. File violates Native Client safety rules.
__asm__ ("int $3");
#elif BX_PLATFORM_EMSCRIPTEN
emscripten_log(EM_LOG_CONSOLE | EM_LOG_ERROR | EM_LOG_C_STACK | EM_LOG_JS_STACK | EM_LOG_DEMANGLE, "debugBreak!");
emscripten_log(0
| EM_LOG_CONSOLE
| EM_LOG_ERROR
| EM_LOG_C_STACK
| EM_LOG_JS_STACK
, "debugBreak!"
);
// Doing emscripten_debugger() disables asm.js validation due to an emscripten bug
//emscripten_debugger();
EM_ASM({ debugger; });
Expand Down
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="263"
android:versionName="0.263"
android:versionCode="264"
android:versionName="0.264"
android:installLocation="auto">

<!-- OpenGL ES 2.0 -->
Expand Down
6 changes: 3 additions & 3 deletions docs/source/commandline/commandline-all.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3989,7 +3989,7 @@ Core Misc Options
Specifies the type of UI to use, either ``simple`` or ``cabinet``.
The default is Cabinet (**-ui cabinet**).
The default is cabinet (**-ui cabinet**).
Example:
.. code-block:: bash
Expand Down Expand Up @@ -4025,9 +4025,9 @@ Core Misc Options
**\-[no]ui_mouse**
Displays a mouse cursor when using the built-in UI for MAME.
Displays a mouse cursor when using the built-in MAME user interface.
The default is (**-noui_mouse**).
The default is ON (**-ui_mouse**).
.. _mame-commandline-language:
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.263'
version = '0.264'
# The full version, including alpha/beta/rc tags.
release = '0.263'
release = '0.264'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
21 changes: 14 additions & 7 deletions docs/source/debugger/general.rst
Original file line number Diff line number Diff line change
Expand Up @@ -190,15 +190,22 @@ available:

%c
Prints the corresponding argument as an 8-bit character.
%[0][<n>]d
%[-][0][<n>]d
Prints the corresponding argument as a decimal number with optional
minimum field width and zero fill.
%[0][<n>]o
left justification, zero fill and minimum field width.
%[-][0][<n>]o
Prints the corresponding argument as an octal number with optional
minimum field width and zero fill using lowercase letters.
%[0][<n>]x
Prints the corresponding argument as a hexadecimal number with
optional minimum field width and zero fill using uppercase letters.
left justification, zero fill and minimum field width.
%[-][0][<n>]x
Prints the corresponding argument as a lowercase hexadecimal number
with optional left justification, zero fill and minimum field width.
%[-][0][<n>]X
Prints the corresponding argument as an uppercase hexadecimal number
with optional left justification, zero fill and minimum field width.
%[-][<n>][.[<n>]]s
Prints a null-terminated string of 8-bit characters from the address
and address space given by the corresponding argument, with optional
left justification, minimum and maximum field widths.
\%%
Prints a literal percent symbol.
\\n
Expand Down
4 changes: 4 additions & 0 deletions docs/source/initialsetup/compilingmame.rst
Original file line number Diff line number Diff line change
Expand Up @@ -559,6 +559,10 @@ Optional features
TOOLS
Set to **1** to build additional tools along with the emulator, including
**unidasm**, **chdman**, **romcmp**, and **srcclean**.
EMULATOR
When set to **0**, the main emulator target will not be created. This is
intended to be used in conjunction with setting **TOOLS** to **1** to build
the additional tools without building the emulator.
NO_OPENGL
Set to **1** to disable building the OpenGL video output module.
NO_USE_PORTAUDIO
Expand Down
236 changes: 0 additions & 236 deletions docs/swlist/n64jp.csv

This file was deleted.

10 changes: 0 additions & 10 deletions docs/swlist/readme.txt

This file was deleted.

Loading

0 comments on commit ac9d034

Please sign in to comment.