diff options
author | 2018-09-20 11:42:37 +1000 | |
---|---|---|
committer | 2018-09-20 11:42:37 +1000 | |
commit | 2993e850bbe44f8e7992877bd1e5a767f762b1ac (patch) | |
tree | 46c40ac34c66782ce6441ddab959c2461230c4bb /src/devices/video/ps2gs.h | |
parent | 82a3d44cbe6d013a8e878cafc01e4b5caea03b38 (diff) |
(nw) fix lots of inadverently mutable static pointers
Diffstat (limited to 'src/devices/video/ps2gs.h')
-rw-r--r-- | src/devices/video/ps2gs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/video/ps2gs.h b/src/devices/video/ps2gs.h index a68ae9913df..28db82d1945 100644 --- a/src/devices/video/ps2gs.h +++ b/src/devices/video/ps2gs.h @@ -307,9 +307,9 @@ protected: uint8_t m_curr_field; - static const size_t FORMAT_PIXEL_WIDTHS[0x40]; - static const char* FORMAT_NAMES[0x40]; - static const uint32_t KICK_COUNTS[8]; + static size_t const FORMAT_PIXEL_WIDTHS[0x40]; + static char const *const FORMAT_NAMES[0x40]; + static uint32_t const KICK_COUNTS[8]; }; DECLARE_DEVICE_TYPE(SONYPS2_GS, ps2_gs_device) |