summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/dgn_beta.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/dgn_beta.cpp')
-rw-r--r--src/mame/video/dgn_beta.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/dgn_beta.cpp b/src/mame/video/dgn_beta.cpp
index 8d1795f2e72..1850f89f815 100644
--- a/src/mame/video/dgn_beta.cpp
+++ b/src/mame/video/dgn_beta.cpp
@@ -100,9 +100,9 @@ the access to the video memory is unclear to me at the moment.
MC6845_UPDATE_ROW( dgn_beta_state::crtc_update_row )
{
- const rgb_t *palette = m_palette->palette()->entry_list_raw();
- uint8_t *videoram = m_videoram;
- uint32_t *p = &bitmap.pix32(y);
+ rgb_t const *const palette = m_palette->palette()->entry_list_raw();
+ uint8_t const *const videoram = m_videoram;
+ uint32_t *p = &bitmap.pix(y);
int i;
if(IsTextMode)
{