Typo fix: convertion → conversion

This commit is contained in:
Jordi Mallach 2016-03-31 23:33:03 +02:00
parent 96c3921e81
commit b2a74670e0
2 changed files with 4 additions and 4 deletions

View File

@ -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;

View File

@ -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;
}