summaryrefslogtreecommitdiffstatshomepage
path: root/docs/source/debugger
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2024-03-19 16:08:35 +1100
committer Vas Crabb <vas@vastheman.com>2024-03-19 16:08:35 +1100
commit0524b105c18691e5dbddee3aef4afad08f277fb9 (patch)
tree5d10dbc399688f648b63ce3fc1cc93b0ce4c4277 /docs/source/debugger
parentc545ac9eb6407348fe28f2cc3f70d07dcece915c (diff)
emu/debug/debugcmd.cpp: Added support for lowercase hex to printf/logerror. [Patrick Mackinlay]
Also simplified implementation by better leveraging util/strformat.h. This is from pull request #12124, to get some testing for the fundamental change before freeze.
Diffstat (limited to 'docs/source/debugger')
-rw-r--r--docs/source/debugger/general.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/source/debugger/general.rst b/docs/source/debugger/general.rst
index cdaf9ca4019..13060894aae 100644
--- a/docs/source/debugger/general.rst
+++ b/docs/source/debugger/general.rst
@@ -198,6 +198,9 @@ available:
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 lowercase letters.
+%[0][<n>]X
+ Prints the corresponding argument as a hexadecimal number with
optional minimum field width and zero fill using uppercase letters.
\%%
Prints a literal percent symbol.