diff options
author | 2025-04-18 18:53:12 +0200 | |
---|---|---|
committer | 2025-04-18 18:53:20 +0200 | |
commit | 98736c097208d69aa24f4c5366b77b6362285371 (patch) | |
tree | ac95900dcf8b0c78b0a689fc46ac78c3578d4c76 | |
parent | 5bd60d58c0aeeb225e7d32d8b94aea2800917ad5 (diff) |
toolchain.lua: correct typo,
xmen: add todo note about weird mcfg issue
-rw-r--r-- | scripts/toolchain.lua | 4 | ||||
-rw-r--r-- | src/mame/konami/xmen.cpp | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/scripts/toolchain.lua b/scripts/toolchain.lua index ebbcdb59fa8..6ee4748b258 100644 --- a/scripts/toolchain.lua +++ b/scripts/toolchain.lua @@ -165,7 +165,7 @@ function toolchain(_buildDir, _subDir) if "mingw32-gcc" == _OPTIONS["gcc"] then if toolchainPrefix == nil or toolchainPrefix == "" then if not os.getenv("MINGW32") then - print("Set MINGW32 envrionment variable.") + print("Set MINGW32 environment variable.") end toolchainPrefix = "$(MINGW32)/bin/i686-w64-mingw32-" end @@ -178,7 +178,7 @@ function toolchain(_buildDir, _subDir) if "mingw64-gcc" == _OPTIONS["gcc"] then if toolchainPrefix == nil or toolchainPrefix == "" then if not os.getenv("MINGW64") then - print("Set MINGW64 envrionment variable.") + print("Set MINGW64 environment variable.") end toolchainPrefix = "$(MINGW64)/bin/x86_64-w64-mingw32-" end diff --git a/src/mame/konami/xmen.cpp b/src/mame/konami/xmen.cpp index 7a09275d6cc..bbae8982dc5 100644 --- a/src/mame/konami/xmen.cpp +++ b/src/mame/konami/xmen.cpp @@ -746,6 +746,7 @@ void xmen6p_state::xmen6p(machine_config &config) // video hardware config.set_default_layout(layout_dualhsxs); + // TODO: why doesn't just changing m_screen parameters work? nor config.replace()? config.device_remove("screen"); SCREEN(config, m_screen, SCREEN_TYPE_RASTER); |