dfs500.cpp: Const-incorrectness fixed

* photoplysx.cpp: srcclean
This commit is contained in:
AJR 2020-10-15 14:29:28 -04:00
parent fc8330e65c
commit e3dbb0fa43
2 changed files with 104 additions and 104 deletions

View File

@ -194,7 +194,7 @@ void dfs500_state::machine_reset()
uint32_t dfs500_state::screen_update(screen_device &screen, bitmap_rgb32 &bitmap, rectangle const &cliprect)
{
bitmap_argb32 *input_bitmap = &m_input[m_input_sel_A & 3]->get_bitmap();
bitmap_argb32 const *input_bitmap = &m_input[m_input_sel_A & 3]->get_bitmap();
if (input_bitmap)
{

View File

@ -1,15 +1,15 @@
// license:BSD-3-Clause
// copyright-holders:
/*
Funworld Photo Play Spirit Xtreme
Funworld Photo Play Spirit Xtreme
CPU: Intel CELERON 2 GHz / 128 / 400 (SL6VR)
RAM: 256MB DDR 333
PCB: Intel 865G + Intel Extreme Graphics 2 + Intel FW82801FR
I/O: Cypress AN2131SC (12.000 MHz xtal) + Winbond W83627HF + Realtek RTL8101L
BIOS: 03/11/2009-I865G-6A79AD4EC-00 (Pm49FL004T-33JC)
Dongle: USB
Sound: C-Media CMI9761A
CPU: Intel CELERON 2 GHz / 128 / 400 (SL6VR)
RAM: 256MB DDR 333
PCB: Intel 865G + Intel Extreme Graphics 2 + Intel FW82801FR
I/O: Cypress AN2131SC (12.000 MHz xtal) + Winbond W83627HF + Realtek RTL8101L
BIOS: 03/11/2009-I865G-6A79AD4EC-00 (Pm49FL004T-33JC)
Dongle: USB
Sound: C-Media CMI9761A
*/
#include "emu.h"