summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2021-03-12 17:01:57 -0500
committer AJR <ajrhacker@users.noreply.github.com>2021-03-12 17:01:57 -0500
commite1d4138d2712ac82572854d318c841864e29c516 (patch)
treeb3922c62e2dd6d34d4b5a9ae1465db16be122026
parentcdb06b7a99f8717bdfee89148b57eea098a0713c (diff)
macpdm.cpp: Fix clang build
-rw-r--r--src/mame/drivers/macpdm.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/macpdm.cpp b/src/mame/drivers/macpdm.cpp
index 7a38a7ba327..b0f8cec84c1 100644
--- a/src/mame/drivers/macpdm.cpp
+++ b/src/mame/drivers/macpdm.cpp
@@ -20,8 +20,8 @@
#include "speaker.h"
constexpr auto IO_CLOCK = 31.3344_MHz_XTAL;
-constexpr auto VGA_CLOCK = 25.1750_MHz_XTAL;
-constexpr auto DOT_CLOCK = 57.2832_MHz_XTAL;
+[[maybe_unused]] constexpr auto VGA_CLOCK = 25.1750_MHz_XTAL;
+[[maybe_unused]] constexpr auto DOT_CLOCK = 57.2832_MHz_XTAL;
constexpr auto ENET_CLOCK = 20_MHz_XTAL;
class macpdm_state : public driver_device