From 5cc90dc788ea91078330285719af36f7013e9184 Mon Sep 17 00:00:00 2001 From: Jordi Mallach Date: Thu, 31 Mar 2016 23:09:00 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20typo:=20compresed=20=E2=86=92=20compresse?= =?UTF-8?q?d?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/mame/audio/dcs.cpp | 4 ++-- src/mame/drivers/gaelco3d.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mame/audio/dcs.cpp b/src/mame/audio/dcs.cpp index f887d59011d..eda1167a1e3 100644 --- a/src/mame/audio/dcs.cpp +++ b/src/mame/audio/dcs.cpp @@ -1896,9 +1896,9 @@ WRITE16_MEMBER(dcs_audio_device:: adsp_control_w ) case S1_CONTROL_REG: if (((data >> 4) & 3) == 2) - logerror("DCS: Oh no!, the data is compresed with u-law encoding\n"); + logerror("DCS: Oh no!, the data is compressed with u-law encoding\n"); if (((data >> 4) & 3) == 3) - logerror("DCS: Oh no!, the data is compresed with A-law encoding\n"); + logerror("DCS: Oh no!, the data is compressed with A-law encoding\n"); break; case TIMER_SCALE_REG: diff --git a/src/mame/drivers/gaelco3d.cpp b/src/mame/drivers/gaelco3d.cpp index 0170d609e85..d7b3652da95 100644 --- a/src/mame/drivers/gaelco3d.cpp +++ b/src/mame/drivers/gaelco3d.cpp @@ -582,9 +582,9 @@ WRITE16_MEMBER(gaelco3d_state::adsp_control_w) case S1_CONTROL_REG: if (((data >> 4) & 3) == 2) - logerror("Oh no!, the data is compresed with u-law encoding\n"); + logerror("Oh no!, the data is compressed with u-law encoding\n"); if (((data >> 4) & 3) == 3) - logerror("Oh no!, the data is compresed with A-law encoding\n"); + logerror("Oh no!, the data is compressed with A-law encoding\n"); break; } }