summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/cdp1869.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/cdp1869.h')
-rw-r--r--src/devices/sound/cdp1869.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/devices/sound/cdp1869.h b/src/devices/sound/cdp1869.h
index ecd34ddbd87..6370322ba75 100644
--- a/src/devices/sound/cdp1869.h
+++ b/src/devices/sound/cdp1869.h
@@ -146,17 +146,17 @@ public:
static constexpr auto CPU_CLK_PAL = DOT_CLK_PAL / 2;
static constexpr auto CPU_CLK_NTSC = DOT_CLK_NTSC / 2;
- static constexpr unsigned CHAR_WIDTH = 6;
-
- static constexpr unsigned HSYNC_START = 56 * CHAR_WIDTH;
- static constexpr unsigned HSYNC_END = 60 * CHAR_WIDTH;
- static constexpr unsigned HBLANK_START = 54 * CHAR_WIDTH;
- static constexpr unsigned HBLANK_END = 5 * CHAR_WIDTH;
- static constexpr unsigned SCREEN_START_PAL = 9 * CHAR_WIDTH;
- static constexpr unsigned SCREEN_START_NTSC = 10 * CHAR_WIDTH;
- static constexpr unsigned SCREEN_START = 10 * CHAR_WIDTH;
- static constexpr unsigned SCREEN_END = 50 * CHAR_WIDTH;
- static constexpr unsigned SCREEN_WIDTH = 60 * CHAR_WIDTH;
+ static constexpr unsigned CH_WIDTH = 6;
+
+ static constexpr unsigned HSYNC_START = 56 * CH_WIDTH;
+ static constexpr unsigned HSYNC_END = 60 * CH_WIDTH;
+ static constexpr unsigned HBLANK_START = 54 * CH_WIDTH;
+ static constexpr unsigned HBLANK_END = 5 * CH_WIDTH;
+ static constexpr unsigned SCREEN_START_PAL = 9 * CH_WIDTH;
+ static constexpr unsigned SCREEN_START_NTSC = 10 * CH_WIDTH;
+ static constexpr unsigned SCREEN_START = 10 * CH_WIDTH;
+ static constexpr unsigned SCREEN_END = 50 * CH_WIDTH;
+ static constexpr unsigned SCREEN_WIDTH = 60 * CH_WIDTH;
static constexpr unsigned TOTAL_SCANLINES_PAL = 312;
static constexpr unsigned SCANLINE_VBLANK_START_PAL = 304;