diff options
| author | 2024-04-19 21:54:26 -0400 | |
|---|---|---|
| committer | 2024-04-19 21:54:26 -0400 | |
| commit | 78d561500d633f73eeb4b5497a023ebf3bf1e547 (patch) | |
| tree | 0515e6c376c8e20aaa7285ed7e6ddb1b0eb306d8 | |
| parent | 1c5e5b9b4370d4e7a83a5b844e75c16546f706c3 (diff) | |
ay8910: Suppress configuration warnings
| -rw-r--r-- | src/devices/sound/ay8910.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/devices/sound/ay8910.cpp b/src/devices/sound/ay8910.cpp index 92e9fcc7df3..64d58152352 100644 --- a/src/devices/sound/ay8910.cpp +++ b/src/devices/sound/ay8910.cpp @@ -581,6 +581,7 @@ be induced by cutoff currents from the 15 FETs. #define LOG_IGNORED_WRITES (1U << 1) #define LOG_WARNINGS (1U << 2) +#define LOG_OUTPUT_CONFIG (1U << 3) #define VERBOSE (LOG_WARNINGS) #include "logmacro.h" @@ -1215,7 +1216,7 @@ void ay8910_device::build_mixer_table() if ((m_flags & AY8910_LEGACY_OUTPUT) != 0) { - LOGMASKED(LOG_WARNINGS, "%s using legacy output levels!\n", name()); + LOGMASKED(LOG_OUTPUT_CONFIG, "%s using legacy output levels!\n", name()); normalize = 1; } @@ -1295,7 +1296,7 @@ void ay8910_device::device_start() if ((m_flags & AY8910_SINGLE_OUTPUT) != 0) { - LOGMASKED(LOG_WARNINGS, "%s device using single output!\n", name()); + LOGMASKED(LOG_OUTPUT_CONFIG, "%s device using single output!\n", name()); m_streams = 1; } |
