From b2a74670e0514b5b6ad86673d10f54dd277579f0 Mon Sep 17 00:00:00 2001 From: Jordi Mallach Date: Thu, 31 Mar 2016 23:33:03 +0200 Subject: [PATCH] =?UTF-8?q?Typo=20fix:=20convertion=20=E2=86=92=20conversi?= =?UTF-8?q?on?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/devices/sound/fm.cpp | 4 ++-- src/devices/sound/fmopl.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/devices/sound/fm.cpp b/src/devices/sound/fm.cpp index ee74c47fd97..cc21baa300c 100644 --- a/src/devices/sound/fm.cpp +++ b/src/devices/sound/fm.cpp @@ -3208,8 +3208,8 @@ UINT8 ym2608_read(void *chip,int a) { if(addr == 0x0f) { - F2608->device->logerror("YM2608 A/D convertion is accessed but not implemented !\n"); - ret = 0x80; /* 2's complement PCM data - result from A/D convertion */ + F2608->device->logerror("YM2608 A/D conversion is accessed but not implemented !\n"); + ret = 0x80; /* 2's complement PCM data - result from A/D conversion */ } } break; diff --git a/src/devices/sound/fmopl.cpp b/src/devices/sound/fmopl.cpp index 9f3a92a4517..ccd9f4199a0 100644 --- a/src/devices/sound/fmopl.cpp +++ b/src/devices/sound/fmopl.cpp @@ -2101,8 +2101,8 @@ static unsigned char OPLRead(FM_OPL *OPL,int a) case 0x1a: /* PCM-DATA */ if(OPL->type&OPL_TYPE_ADPCM) { - OPL->device->logerror("Y8950 A/D convertion is accessed but not implemented !\n"); - return 0x80; /* 2's complement PCM data - result from A/D convertion */ + OPL->device->logerror("Y8950 A/D conversion is accessed but not implemented !\n"); + return 0x80; /* 2's complement PCM data - result from A/D conversion */ } return 0; }