Fix typo: compresed → compressed

This commit is contained in:
Jordi Mallach 2016-03-31 23:09:00 +02:00
parent 3fb9b74f11
commit 5cc90dc788
2 changed files with 4 additions and 4 deletions

View File

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

View File

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