mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 13:50:13 +00:00
Fixed updateCallback11() according to LordHoto's directions, and renamed it
update_writeAdlib(). (The "update_" prefix will probably be changed later, but for now I want it to remain obvious that the functions belong to the other updateCallback*() functions.) svn-id: r20990
This commit is contained in:
parent
9255a7b408
commit
8a60a99140
@ -195,7 +195,7 @@ private:
|
||||
int updateCallback8(uint8 *&dataptr, OutputState &state, uint8 value);
|
||||
int updateCallback9(uint8 *&dataptr, OutputState &state, uint8 value);
|
||||
int updateCallback10(uint8 *&dataptr, OutputState &state, uint8 value);
|
||||
int updateCallback11(uint8 *&dataptr, OutputState &state, uint8 value);
|
||||
int update_writeAdlib(uint8 *&dataptr, OutputState &state, uint8 value);
|
||||
int updateCallback12(uint8 *&dataptr, OutputState &state, uint8 value);
|
||||
int updateCallback13(uint8 *&dataptr, OutputState &state, uint8 value);
|
||||
int updateCallback14(uint8 *&dataptr, OutputState &state, uint8 value);
|
||||
@ -1017,8 +1017,8 @@ int AdlibDriver::updateCallback10(uint8 *&dataptr, OutputState &state, uint8 val
|
||||
return (_continueFlag != 0);
|
||||
}
|
||||
|
||||
int AdlibDriver::updateCallback11(uint8 *&dataptr, OutputState &state, uint8 value) {
|
||||
output0x388(*dataptr++);
|
||||
int AdlibDriver::update_writeAdlib(uint8 *&dataptr, OutputState &state, uint8 value) {
|
||||
output0x388((value << 8) || *dataptr++);
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -1685,7 +1685,7 @@ const AdlibDriver::ParserOpcode AdlibDriver::_parserOpcodeTable[] = {
|
||||
// 8
|
||||
COMMAND(updateCallback9),
|
||||
COMMAND(updateCallback10),
|
||||
COMMAND(updateCallback11),
|
||||
COMMAND(update_writeAdlib),
|
||||
COMMAND(updateCallback12),
|
||||
|
||||
// 12
|
||||
|
Loading…
Reference in New Issue
Block a user