mirror of
https://github.com/holub/mame
synced 2025-07-04 17:38:08 +03:00
removed double string in some instances of "Fatal error: Error: x"
This commit is contained in:
parent
3f86b60153
commit
17eccd74d7
@ -54,7 +54,7 @@ void isa8_slot_device::device_start()
|
|||||||
device_isa8_card_interface *dev = dynamic_cast<device_isa8_card_interface *>(get_card_device());
|
device_isa8_card_interface *dev = dynamic_cast<device_isa8_card_interface *>(get_card_device());
|
||||||
const device_isa16_card_interface *intf;
|
const device_isa16_card_interface *intf;
|
||||||
if (get_card_device()->interface(intf))
|
if (get_card_device()->interface(intf))
|
||||||
fatalerror("Error ISA16 device in ISA8 slot\n");
|
fatalerror("ISA16 device in ISA8 slot\n");
|
||||||
|
|
||||||
if (dev) device_isa8_card_interface::static_set_isabus(*dev,m_owner->subdevice(m_isa_tag));
|
if (dev) device_isa8_card_interface::static_set_isabus(*dev,m_owner->subdevice(m_isa_tag));
|
||||||
}
|
}
|
||||||
|
@ -79,7 +79,7 @@ crt5057_device::crt5057_device(const machine_config &mconfig, const char *tag, d
|
|||||||
void tms9927_device::device_start()
|
void tms9927_device::device_start()
|
||||||
{
|
{
|
||||||
assert(clock() > 0);
|
assert(clock() > 0);
|
||||||
if (!(m_hpixels_per_column > 0)) fatalerror("ERROR: TMS9927: number of pixels per column must be explicitly set using MCFG_TMS9927_CHAR_WIDTH()!\n");
|
if (!(m_hpixels_per_column > 0)) fatalerror("TMS9927: number of pixels per column must be explicitly set using MCFG_TMS9927_CHAR_WIDTH()!\n");
|
||||||
|
|
||||||
/* copy the initial parameters */
|
/* copy the initial parameters */
|
||||||
m_clock = clock();
|
m_clock = clock();
|
||||||
|
@ -372,7 +372,7 @@ int running_machine::run(bool firstrun)
|
|||||||
g_profiler.start(PROFILER_EXTRA);
|
g_profiler.start(PROFILER_EXTRA);
|
||||||
|
|
||||||
#if defined(EMSCRIPTEN)
|
#if defined(EMSCRIPTEN)
|
||||||
//break out to our async javascript loop and halt
|
// break out to our async javascript loop and halt
|
||||||
js_set_main_loop(this);
|
js_set_main_loop(this);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -403,7 +403,7 @@ int running_machine::run(bool firstrun)
|
|||||||
}
|
}
|
||||||
catch (emu_fatalerror &fatal)
|
catch (emu_fatalerror &fatal)
|
||||||
{
|
{
|
||||||
osd_printf_error("FATALERROR: %s\n", fatal.string());
|
osd_printf_error("Fatal error: %s\n", fatal.string());
|
||||||
error = MAMERR_FATALERROR;
|
error = MAMERR_FATALERROR;
|
||||||
if (fatal.exitcode() != 0)
|
if (fatal.exitcode() != 0)
|
||||||
error = fatal.exitcode();
|
error = fatal.exitcode();
|
||||||
|
@ -1890,11 +1890,11 @@ void address_space::prepare_map()
|
|||||||
// find the region
|
// find the region
|
||||||
memory_region *region = machine().root_device().memregion(fulltag.c_str());
|
memory_region *region = machine().root_device().memregion(fulltag.c_str());
|
||||||
if (region == nullptr)
|
if (region == nullptr)
|
||||||
fatalerror("Error: device '%s' %s space memory map entry %X-%X references non-existant region \"%s\"\n", m_device.tag(), m_name, entry->m_addrstart, entry->m_addrend, entry->m_region);
|
fatalerror("device '%s' %s space memory map entry %X-%X references non-existant region \"%s\"\n", m_device.tag(), m_name, entry->m_addrstart, entry->m_addrend, entry->m_region);
|
||||||
|
|
||||||
// validate the region
|
// validate the region
|
||||||
if (entry->m_rgnoffs + (entry->m_byteend - entry->m_bytestart + 1) > region->bytes())
|
if (entry->m_rgnoffs + (entry->m_byteend - entry->m_bytestart + 1) > region->bytes())
|
||||||
fatalerror("Error: device '%s' %s space memory map entry %X-%X extends beyond region \"%s\" size (%X)\n", m_device.tag(), m_name, entry->m_addrstart, entry->m_addrend, entry->m_region, region->bytes());
|
fatalerror("device '%s' %s space memory map entry %X-%X extends beyond region \"%s\" size (%X)\n", m_device.tag(), m_name, entry->m_addrstart, entry->m_addrend, entry->m_region, region->bytes());
|
||||||
}
|
}
|
||||||
|
|
||||||
// convert any region-relative entries to their memory pointers
|
// convert any region-relative entries to their memory pointers
|
||||||
|
@ -231,11 +231,11 @@ void sound_stream::set_input(int index, sound_stream *input_stream, int output_i
|
|||||||
|
|
||||||
// make sure it's a valid input
|
// make sure it's a valid input
|
||||||
if (index >= m_input.size())
|
if (index >= m_input.size())
|
||||||
fatalerror("Fatal error: stream_set_input attempted to configure non-existant input %d (%d max)\n", index, int(m_input.size()));
|
fatalerror("stream_set_input attempted to configure non-existant input %d (%d max)\n", index, int(m_input.size()));
|
||||||
|
|
||||||
// make sure it's a valid output
|
// make sure it's a valid output
|
||||||
if (input_stream != nullptr && output_index >= input_stream->m_output.size())
|
if (input_stream != nullptr && output_index >= input_stream->m_output.size())
|
||||||
fatalerror("Fatal error: stream_set_input attempted to use a non-existant output %d (%d max)\n", output_index, int(m_output.size()));
|
fatalerror("stream_set_input attempted to use a non-existant output %d (%d max)\n", output_index, int(m_output.size()));
|
||||||
|
|
||||||
// if this input is already wired, update the dependent info
|
// if this input is already wired, update the dependent info
|
||||||
stream_input &input = m_input[index];
|
stream_input &input = m_input[index];
|
||||||
|
@ -1004,7 +1004,7 @@ void namcos21_state::render_slave_output(UINT16 data)
|
|||||||
{
|
{
|
||||||
if( m_mpDspState->slaveOutputSize >= 4096 )
|
if( m_mpDspState->slaveOutputSize >= 4096 )
|
||||||
{
|
{
|
||||||
fatalerror( "FATAL ERROR: SLAVE OVERFLOW (0x%x)\n",m_mpDspState->slaveOutputBuffer[0] );
|
fatalerror( "SLAVE OVERFLOW (0x%x)\n",m_mpDspState->slaveOutputBuffer[0] );
|
||||||
}
|
}
|
||||||
|
|
||||||
/* append word to slave output buffer */
|
/* append word to slave output buffer */
|
||||||
|
@ -834,7 +834,7 @@ void ngen_state::machine_start()
|
|||||||
memory_share* fontshare = memshare("fontram");
|
memory_share* fontshare = memshare("fontram");
|
||||||
m_hd_buffer.allocate(1024*8); // 8kB buffer RAM for HD controller
|
m_hd_buffer.allocate(1024*8); // 8kB buffer RAM for HD controller
|
||||||
if(vidshare == nullptr || fontshare == nullptr)
|
if(vidshare == nullptr || fontshare == nullptr)
|
||||||
fatalerror("Error: VRAM not found");
|
fatalerror("VRAM not found\n");
|
||||||
m_vram.set(*vidshare,2);
|
m_vram.set(*vidshare,2);
|
||||||
m_fontram.set(*fontshare,2);
|
m_fontram.set(*fontshare,2);
|
||||||
}
|
}
|
||||||
|
@ -191,7 +191,7 @@ void atari_rle_objects_device::device_start()
|
|||||||
// resolve our memory
|
// resolve our memory
|
||||||
memory_share *share = owner()->memshare(tag());
|
memory_share *share = owner()->memshare(tag());
|
||||||
if (share == nullptr)
|
if (share == nullptr)
|
||||||
throw emu_fatalerror("Error: unable to find memory share '%s' needed for Atari RLE device", tag());
|
throw emu_fatalerror("Unable to find memory share '%s' needed for Atari RLE device", tag());
|
||||||
m_ram.set(*share, 2);
|
m_ram.set(*share, 2);
|
||||||
|
|
||||||
// register a VBLANK callback
|
// register a VBLANK callback
|
||||||
|
Loading…
Reference in New Issue
Block a user