summaryrefslogtreecommitdiffstatshomepage
path: root/docs/source/advanced/paths.rst
diff options
context:
space:
mode:
author Firehawke <34792592+Firehawke@users.noreply.github.com>2019-01-02 10:05:21 -0700
committer Vas Crabb <cuavas@users.noreply.github.com>2019-01-03 04:05:21 +1100
commit6432d6603779cbb8bf5974eca36b88009d7cc429 (patch)
tree8b83ab71cec65f4c00d228f670b85b4c631603d2 /docs/source/advanced/paths.rst
parent3d29b8927d5ad4140c69d00713f1e901bae6af97 (diff)
Case sensitivity training for INI (nw) (#4455)
* Case sensitivity training for INI (nw) The world is not 100% Windows, so case sensitvity is needed. * Further standardization of the formatting (nw) More to go... * Pass 2 of new formatting wave (nw) More to go, though. * wave 3 of formatting cleanup (nw) Further adjustments and cleanups, including unwanted tabs. * Correct filtering instructions (nw)
Diffstat (limited to 'docs/source/advanced/paths.rst')
-rw-r--r--docs/source/advanced/paths.rst22
1 files changed, 11 insertions, 11 deletions
diff --git a/docs/source/advanced/paths.rst b/docs/source/advanced/paths.rst
index da92e1bbbe9..d16247a42cb 100644
--- a/docs/source/advanced/paths.rst
+++ b/docs/source/advanced/paths.rst
@@ -9,20 +9,20 @@ Order of Path Loading
Let's use an example of the cheat file for AfterBurner 2 for Sega Genesis/MegaDrive (aburner2 in the megadrive softlist), and your cheatpath is set to "cheat" (as per the default) -- this is how MAME will search for that cheat file:
-1. cheat/megadriv/aburner2.xml
-2. cheat/megadriv.zip -> aburner2.xml
+1. ``cheat/megadriv/aburner2.xml``
+2. ``cheat/megadriv.zip`` -> ``aburner2.xml``
Notice that it checks for a .ZIP file first before a .7Z file.
-3. cheat/megadriv.zip -> <arbitrary path>/aburner2.xml
- It will look for the first (if any) aburner2.xml file it can find inside that zip, no matter what the path is.
-4. cheat.zip -> megadriv/aburner2.xml
+3. ``cheat/megadriv.zip`` -> ``<arbitrary path>/aburner2.xml``
+ It will look for the first (if any) ``aburner2.xml`` file it can find inside that zip, no matter what the path is.
+4. ``cheat.zip`` -> ``megadriv/aburner2.xml``
Now it is specifically looking for the file and folder combination, but inside the cheat.zip file.
-5. cheat.zip -> <arbitrary path>/megadriv/aburner2.xml
- Like before, except looking for the first (if any) aburner2.xml inside a megadriv folder inside the zip.
-6. cheat/megadriv.7z -> aburner2.xml
+5. ``cheat.zip`` -> ``<arbitrary path>/megadriv/aburner2.xml``
+ Like before, except looking for the first (if any) ``aburner2.xml`` inside a ``megadriv`` folder inside the zip.
+6. ``cheat/megadriv.7z`` -> ``aburner2.xml``
Now we start checking 7ZIP files.
-7. cheat/megadriv.7z -> <arbitrary path>/aburner2.xml
-8. cheat.7z -> megadriv/aburner2.xml
-9. cheat.7z -> <arbitrary path>/megadriv/aburner2.xml
+7. ``cheat/megadriv.7z`` -> ``<arbitrary path>/aburner2.xml``
+8. ``cheat.7z`` -> ``megadriv/aburner2.xml``
+9. ``cheat.7z`` -> ``<arbitrary path>/megadriv/aburner2.xml``
Similar to zip, except now 7ZIP files.