diff options
Diffstat (limited to 'src/mame/video/pdp1.cpp')
-rw-r--r-- | src/mame/video/pdp1.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/pdp1.cpp b/src/mame/video/pdp1.cpp index 2e91b2cadeb..7dd685e11bb 100644 --- a/src/mame/video/pdp1.cpp +++ b/src/mame/video/pdp1.cpp @@ -26,7 +26,7 @@ -inline void pdp1_state::pdp1_plot_pixel(bitmap_ind16 &bitmap, int x, int y, UINT32 color) +inline void pdp1_state::pdp1_plot_pixel(bitmap_ind16 &bitmap, int x, int y, uint32_t color) { bitmap.pix16(y, x) = color; } @@ -74,7 +74,7 @@ void pdp1_state::pdp1_plot(int x, int y) /* video_update_pdp1: effectively redraw the screen */ -UINT32 pdp1_state::screen_update_pdp1(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect) +uint32_t pdp1_state::screen_update_pdp1(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect) { pdp1_erase_lightpen(bitmap); m_crt->update(bitmap); @@ -354,7 +354,7 @@ enum void pdp1_state::pdp1_typewriter_linefeed() { - UINT8 buf[typewriter_window_width]; + uint8_t buf[typewriter_window_width]; int y; for (y=0; y<typewriter_window_height-typewriter_scroll_step; y++) |