diff options
author | 2021-06-27 19:10:28 -0800 | |
---|---|---|
committer | 2021-06-27 23:10:28 -0400 | |
commit | b7a72bbe4444849e228dc3c871415b768fd65947 (patch) | |
tree | d7ca8ead41d19dc6542eb8ef9cce3f38c774b02f /src/devices/bus/nes/nes_unif.hxx | |
parent | 506ef2cccd6603cd9a30387c4eda66eea763b92e (diff) |
bus/nes: start updating mapper # comments (#8230)
Diffstat (limited to 'src/devices/bus/nes/nes_unif.hxx')
-rw-r--r-- | src/devices/bus/nes/nes_unif.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/nes/nes_unif.hxx b/src/devices/bus/nes/nes_unif.hxx index 34ccb4fa145..0230c3bb533 100644 --- a/src/devices/bus/nes/nes_unif.hxx +++ b/src/devices/bus/nes/nes_unif.hxx @@ -385,7 +385,7 @@ void nes_cart_slot_device::call_load_unif() else { small_prg = true; - logerror("This chunk is smaller than 16K: the emulation might have issues. Please report this file to the MESS forums.\n"); + logerror("This chunk is smaller than 16K: the emulation might have issues. Please report this file to the MAME forums.\n"); } /* Read in the program chunks */ @@ -411,7 +411,7 @@ void nes_cart_slot_device::call_load_unif() } else { - logerror("Unsupported UNIF chunk or corrupted header. Please report the problem at MESS Board.\n"); + logerror("Unsupported UNIF chunk or corrupted header. Please report the problem at MAME Board.\n"); read_length = size; } } @@ -424,7 +424,7 @@ void nes_cart_slot_device::call_load_unif() if (!prg_start) { - fatalerror("No PRG found. Please report the problem at MESS Board.\n"); + fatalerror("No PRG found. Please report the problem at MAME Board.\n"); } // SETUP step 2: getting PCB and other settings @@ -489,7 +489,7 @@ void nes_cart_slot_device::call_load_unif() } if (small_prg) // This is not supported yet, so warn users about this - osd_printf_error("Loaded UNIF file with non-16k PRG chunk. This is not supported in MESS yet."); + osd_printf_error("Loaded UNIF file with non-16k PRG chunk. This is not supported in MAME yet."); if (vrom_size) { |