From 6dfa208a367e85566ca7fd1dfc40fcfef560ea11 Mon Sep 17 00:00:00 2001 From: freq-mod <32672779+freq-mod@users.noreply.github.com> Date: Tue, 1 Mar 2022 12:07:38 +0100 Subject: [PATCH] remove "standalone" from YM2612 and YM2151 given the way it's done, it's not needed anymore i guess --- src/engine/sysDef.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/engine/sysDef.cpp b/src/engine/sysDef.cpp index 54589e37..689af53c 100644 --- a/src/engine/sysDef.cpp +++ b/src/engine/sysDef.cpp @@ -673,9 +673,9 @@ const char* DivEngine::getSystemChips(DivSystem sys) { case DIV_SYSTEM_AMIGA: return "MOS 8364 Paula"; case DIV_SYSTEM_YM2151: - return "Yamaha YM2151 standalone"; + return "Yamaha YM2151"; case DIV_SYSTEM_YM2612: - return "Yamaha YM2612 standalone"; + return "Yamaha YM2612"; case DIV_SYSTEM_TIA: return "Atari TIA"; case DIV_SYSTEM_VIC20: