summaryrefslogtreecommitdiffstatshomepage
path: root/src/frontend/mame/cheat.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2022-02-03 07:43:28 +1100
committer Vas Crabb <vas@vastheman.com>2022-02-03 09:00:23 +1100
commitcb16512392b356d42893257e91ba0935dea86d79 (patch)
tree381266b0c2fa4d8281bacbd0bbc692d13ea2f4e1 /src/frontend/mame/cheat.cpp
parent79db67a77a6929b6423ebe82041971477a1c1a24 (diff)
Clean up various loose ends:
frontend: Exposed debug symbol tables and parsed expressions to Lua (these can be used when the debugger is not active). Also made it simpler to walk input types. imagedev/bitbngr.cpp: Added software list loader support (used by sitcom). sitcom.cpp: Replaced bankdev with a memory view. Also added a bar graph for the timer DAC output, and made the DL1414 displays squarer in the layout like they are in real life. They still don't look right because the internal segment drawing code doen't draw the segments the right width. docs: Fixed broken links and added missing links in command line options index. Also removed documentation for an option that no longer exists and fixed some inconsistent terminology. Separated includes by module in various drivers.
Diffstat (limited to 'src/frontend/mame/cheat.cpp')
-rw-r--r--src/frontend/mame/cheat.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/mame/cheat.cpp b/src/frontend/mame/cheat.cpp
index 1e6d7aaffbd..c16316e8d02 100644
--- a/src/frontend/mame/cheat.cpp
+++ b/src/frontend/mame/cheat.cpp
@@ -1400,7 +1400,7 @@ void cheat_manager::load_cheats(std::string const &filename)
emu_file cheatfile(std::move(searchstr), OPEN_FLAG_READ);
try
{
- // loop over all instrances of the files found in our search paths
+ // loop over all instances of the files found in our search paths
for (std::error_condition filerr = cheatfile.open(filename + ".xml"); !filerr; filerr = cheatfile.open_next())
{
osd_printf_verbose("Loading cheats file from %s\n", cheatfile.fullpath());