mirror of
https://github.com/holub/mame
synced 2025-05-18 19:49:35 +03:00
Typo fix: convertion → conversion
This commit is contained in:
parent
96c3921e81
commit
b2a74670e0
@ -3208,8 +3208,8 @@ UINT8 ym2608_read(void *chip,int a)
|
|||||||
{
|
{
|
||||||
if(addr == 0x0f)
|
if(addr == 0x0f)
|
||||||
{
|
{
|
||||||
F2608->device->logerror("YM2608 A/D convertion is accessed but not implemented !\n");
|
F2608->device->logerror("YM2608 A/D conversion is accessed but not implemented !\n");
|
||||||
ret = 0x80; /* 2's complement PCM data - result from A/D convertion */
|
ret = 0x80; /* 2's complement PCM data - result from A/D conversion */
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -2101,8 +2101,8 @@ static unsigned char OPLRead(FM_OPL *OPL,int a)
|
|||||||
case 0x1a: /* PCM-DATA */
|
case 0x1a: /* PCM-DATA */
|
||||||
if(OPL->type&OPL_TYPE_ADPCM)
|
if(OPL->type&OPL_TYPE_ADPCM)
|
||||||
{
|
{
|
||||||
OPL->device->logerror("Y8950 A/D convertion is accessed but not implemented !\n");
|
OPL->device->logerror("Y8950 A/D conversion is accessed but not implemented !\n");
|
||||||
return 0x80; /* 2's complement PCM data - result from A/D convertion */
|
return 0x80; /* 2's complement PCM data - result from A/D conversion */
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user