summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib
diff options
context:
space:
mode:
author Dirk Best <mail@dirk-best.de>2021-12-02 13:33:44 +0100
committer Dirk Best <mail@dirk-best.de>2021-12-02 13:34:15 +0100
commit620f531c541aecfa5bade33be802d053a10d03ac (patch)
tree00406dbb05651a7a954e706857d3cf550bd31ea9 /src/lib
parent9f45ed5ac482abd03ccb34f51c1ff25fcd360930 (diff)
Remove a few outdated references to MESS
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/formats/cbm_tap.cpp2
-rw-r--r--src/lib/formats/dfi_dsk.cpp2
-rw-r--r--src/lib/formats/flopimg.h8
-rw-r--r--src/lib/formats/tzx_cas.cpp2
4 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/formats/cbm_tap.cpp b/src/lib/formats/cbm_tap.cpp
index 9ae77bffb7d..eeb1872f28e 100644
--- a/src/lib/formats/cbm_tap.cpp
+++ b/src/lib/formats/cbm_tap.cpp
@@ -136,7 +136,7 @@ static int len;
/* This in fact gives the number of samples for half of the pulse */
static inline int tap_data_to_samplecount(int data, int frequency)
{
-// return (int) (0.5 * (0.5 + (((double)CBM_WAV_FREQUENCY / frequency) * (double)data))); // MESS TZX formula
+// return (int) (0.5 * (0.5 + (((double)CBM_WAV_FREQUENCY / frequency) * (double)data))); // MAME TZX formula
return (int) (0.5 * (((double)CBM_WAV_FREQUENCY / frequency) * (double)((data) + 0.5))); // tap2wav formula
}
diff --git a/src/lib/formats/dfi_dsk.cpp b/src/lib/formats/dfi_dsk.cpp
index 79077ab2e12..f2012b62d50 100644
--- a/src/lib/formats/dfi_dsk.cpp
+++ b/src/lib/formats/dfi_dsk.cpp
@@ -73,7 +73,7 @@ bool dfi_format::load(util::random_read &io, uint32_t form_factor, const std::ve
char sign[4];
io.read_at(0, sign, 4, actual);
if(memcmp(sign, "DFER", 4) == 0) {
- osd_printf_error("dfi_dsk: Old type Discferret image detected; the mess Discferret decoder will not handle this properly, bailing out!\n");
+ osd_printf_error("dfi_dsk: Old type Discferret image detected; the MAME Discferret decoder will not handle this properly, bailing out!\n");
return false;
}
diff --git a/src/lib/formats/flopimg.h b/src/lib/formats/flopimg.h
index d9f4582985d..6055714b346 100644
--- a/src/lib/formats/flopimg.h
+++ b/src/lib/formats/flopimg.h
@@ -48,22 +48,22 @@ public:
/*! @brief Load an image.
The load function opens an image file and converts it to the
- internal MESS floppy representation.
+ internal MAME floppy representation.
@param io source buffer containing the image data.
@param form_factor Physical form factor of disk, from the enum
in floppy_image
@param variants the variants from floppy_image the drive can handle
- @param image output buffer for data in MESS internal format.
+ @param image output buffer for data in MAME internal format.
@return true on success, false otherwise.
*/
virtual bool load(util::random_read &io, uint32_t form_factor, const std::vector<uint32_t> &variants, floppy_image *image) = 0;
/*! @brief Save an image.
- The save function writes back an image from the MESS internal
+ The save function writes back an image from the MAME internal
floppy representation to the appropriate format on disk.
@param io output buffer for the data in the on-disk format.
@param variants the variants from floppy_image the drive can handle
- @param image source buffer containing data in MESS internal format.
+ @param image source buffer containing data in MAME internal format.
@return true on success, false otherwise.
*/
virtual bool save(util::random_read_write &io, const std::vector<uint32_t> &variants, floppy_image *image);
diff --git a/src/lib/formats/tzx_cas.cpp b/src/lib/formats/tzx_cas.cpp
index 171eeda89cd..7772fd7fc4b 100644
--- a/src/lib/formats/tzx_cas.cpp
+++ b/src/lib/formats/tzx_cas.cpp
@@ -570,7 +570,7 @@ static int tzx_cas_do_work( int16_t **buffer )
if (pause_time == 0)
{
/* pause = 0 is used to let an emulator automagically stop the tape
- in MESS we do not do that, so we insert a 5 second pause. */
+ in MAME we do not do that, so we insert a 5 second pause. */
pause_time = 5000;
}
size += tzx_cas_handle_block(buffer, cur_block, pause_time, 0, 0, 0, 0, 0, 0, 0, 0);