svn-id: r10311
This commit is contained in:
Max Horn 2003-09-19 14:13:24 +00:00
parent 26607c00ce
commit abdc8f1247
3 changed files with 5 additions and 3 deletions

View File

@ -505,14 +505,14 @@ void Player_V1::nextPCjrCmd() {
}
}
void Player_V1::set_mplex (uint mplex) {
void Player_V1::set_mplex(uint mplex) {
if (mplex == 0)
mplex = 65536;
_mplex = mplex;
_tick_len = _mplex_step * mplex;
}
void Player_V1::do_mix (int16 *data, uint len) {
void Player_V1::do_mix(int16 *data, uint len) {
mutex_up();
uint step;

View File

@ -879,7 +879,7 @@ void Scumm_v2::o2_verbOps() {
break;
}
// FIXME - hack!
// Force redraw of the modified verb slot
drawVerb(slot, 0);
verbMouseOver(0);
}

View File

@ -2561,6 +2561,8 @@ void Scumm_v5::o5_verbOps() {
error("o5_verbOps: unknown subopcode %d", _opcode & 0x1F);
}
}
// Force redraw of the modified verb slot
drawVerb(slot, 0);
verbMouseOver(0);
}