Skip to content

Commit 072b97d

Browse files
committed
README: Escape some definitionss
1 parent 6032eb1 commit 072b97d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ stages of development. Read the STATUS file for detailed information.
2727
gsKit aims to provide the following functionality:
2828

2929
- Multi format GS initialization. (NTSC, PAL, DTV, VESA)
30-
- HalfBuffer Support (NTSC_I and PAL_I modes)
30+
- HalfBuffer Support (`NTSC_I` and `PAL_I` modes)
3131
- VSync, Double Buffering, Anti Aliasing, and Z Depth Test.
32-
- Render Queue Support, with different drawing modes. (GS_ONESHOT, and GS_PERSISTANT)
32+
- Render Queue Support, with different drawing modes. (`GS_ONESHOT`, and `GS_PERSISTANT`)
3333
- Overlay and multi-context support utilizing the "Merge Circuit".
3434
- Basic primitives as per the Sony documentation. (Line, Tri, TriStrip, ...)
3535
- Extended primitives support. (Quads and GL Style Vertex Lists)
@@ -90,12 +90,12 @@ There are several small notes that need to be made about gsKit operation.
9090

9191
- There is a default drawbuffer size of 2MB for oneshot, and 256KB for persistent.
9292
If they are filled beyond capacity, bad things will start to happen.
93-
(Compile with -DGSKIT_DEBUG to get warnings about it at the expense of performance
93+
(Compile with `-DGSKIT_DEBUG` to get warnings about it at the expense of performance
9494
or just uncomment section in Makefile.pref)
95-
You can tweak these values with the GS_RENDER_QUEUE_(OS/PER)_POOLSIZE macros.
95+
You can tweak these values with the `GS_RENDER_QUEUE_(OS/PER)_POOLSIZE` macros.
9696
(Look in ee/gs/include/gsInit.h)
9797

98-
- Most gsKit routines (prim pushing, TEST/CLAMP mode setting, etc) will queue their
98+
- Most gsKit routines (prim pushing, `TEST`/`CLAMP` mode setting, etc) will queue their
9999
execution into the drawbuffer. Texture data sends however, are the exception to this.
100100
They happen immediately upon calling, however this behavior will be changed so they
101101
are also queued into the drawbuffer in a future version.
@@ -112,4 +112,4 @@ can also use the forums at http://forums.ps2dev.org,
112112

113113
## Credits
114114

115-
See AUTHORS.
115+
See `AUTHORS`.

0 commit comments

Comments
 (0)