mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-03 01:15:58 +00:00
Fascination - Put correct protracker functions as Paula now accept sample size > 32k. MOD is now playing in Amiga and Atari versions.
svn-id: r48061
This commit is contained in:
parent
f034b8bd5f
commit
bf17ff87db
@ -448,8 +448,6 @@ protected:
|
||||
void oFascin_loadBatt2(OpGobParams ¶ms);
|
||||
void oFascin_loadBatt3(OpGobParams ¶ms);
|
||||
void oFascin_loadMod(OpGobParams ¶ms);
|
||||
void oFascin_playMod(OpGobParams ¶ms);
|
||||
void oFascin_geUnknown1002(OpGobParams ¶ms);
|
||||
void oFascin_setWinSize();
|
||||
void oFascin_closeWin();
|
||||
void oFascin_activeWin();
|
||||
|
@ -106,8 +106,8 @@ void Inter_Fascination::setupOpcodesGob() {
|
||||
OPCODEGOB( 12, oFascin_loadBatt3);
|
||||
|
||||
OPCODEGOB(1000, oFascin_loadMod);
|
||||
OPCODEGOB(1001, oFascin_playMod); //protrackerPlay doesn't play correctly "mod.extasy"
|
||||
OPCODEGOB(1002, oFascin_geUnknown1002); //to be replaced by o2_stopProtracker when protrackerPlay is fixed
|
||||
OPCODEGOB(1001, oFascin_playProtracker);
|
||||
OPCODEGOB(1002, o2_stopProtracker);
|
||||
}
|
||||
|
||||
|
||||
@ -196,16 +196,9 @@ void Inter_Fascination::oFascin_loadBatt3(OpGobParams ¶ms) {
|
||||
}
|
||||
|
||||
void Inter_Fascination::oFascin_loadMod(OpGobParams ¶ms) {
|
||||
// Fascination GE Function 1000 - Load MOD music
|
||||
// Useless as it's included in playMod
|
||||
}
|
||||
|
||||
void Inter_Fascination::oFascin_playMod(OpGobParams ¶ms) {
|
||||
warning("Fascination oFascin_playProtracker - MOD not compatible (sample > 32768), To Be Fixed");
|
||||
}
|
||||
|
||||
void Inter_Fascination::oFascin_geUnknown1002(OpGobParams ¶ms) {
|
||||
warning("Fascination o2_stopProtracker - Commented out");
|
||||
// Fascination GE Function 1000 - Load MOD music.
|
||||
// Only used by Amiga and Atari versions.
|
||||
// Useless as it's included in Paula's playProTracker
|
||||
}
|
||||
|
||||
void Inter_Fascination::oFascin_setWinSize() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user