aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'games-emulation/sdlmess/files/pce.patch')
-rw-r--r--games-emulation/sdlmess/files/pce.patch99
1 files changed, 0 insertions, 99 deletions
diff --git a/games-emulation/sdlmess/files/pce.patch b/games-emulation/sdlmess/files/pce.patch
deleted file mode 100644
index c99de2a..0000000
--- a/games-emulation/sdlmess/files/pce.patch
+++ /dev/null
@@ -1,99 +0,0 @@
---- a/src/mess/machine/pce.c 2010-10-18 21:33:23.776000007 +0200
-+++ b/src/mess/machine/pce.c 2010-10-18 21:32:42.540000006 +0200
-@@ -1306,7 +1306,7 @@
- {
- pce_cd.cdda_volume = 0.0;
- cdda_set_volume(machine->device("cdda"), 0.0);
-- timer_adjust_oneshot(pce_cd.cdda_fadeout_timer, attotime_never, NULL);
-+ timer_adjust_oneshot(pce_cd.cdda_fadeout_timer, attotime_never, 0);
- }
- else
- {
-@@ -1323,7 +1323,7 @@
- {
- pce_cd.cdda_volume = 100.0;
- cdda_set_volume(machine->device("cdda"), 100.0);
-- timer_adjust_oneshot(pce_cd.cdda_fadein_timer, attotime_never, NULL);
-+ timer_adjust_oneshot(pce_cd.cdda_fadein_timer, attotime_never, 0);
- }
- else
- {
-@@ -1340,7 +1340,7 @@
- {
- pce_cd.adpcm_volume = 0.0;
- msm5205_set_volume(machine->device("msm5205"), 0.0);
-- timer_adjust_oneshot(pce_cd.adpcm_fadeout_timer, attotime_never, NULL);
-+ timer_adjust_oneshot(pce_cd.adpcm_fadeout_timer, attotime_never, 0);
- }
- else
- {
-@@ -1357,7 +1357,7 @@
- {
- pce_cd.adpcm_volume = 100.0;
- msm5205_set_volume(machine->device("msm5205"), 100.0);
-- timer_adjust_oneshot(pce_cd.adpcm_fadein_timer, attotime_never, NULL);
-+ timer_adjust_oneshot(pce_cd.adpcm_fadein_timer, attotime_never, 0);
- }
- else
- {
-@@ -1496,49 +1496,49 @@
- timer_adjust_oneshot(pce_cd.cdda_fadein_timer, ATTOTIME_IN_USEC(100), 100);
- pce_cd.adpcm_volume = 0.0;
- timer_adjust_oneshot(pce_cd.adpcm_fadein_timer, ATTOTIME_IN_USEC(100), 100);
-- timer_adjust_oneshot(pce_cd.cdda_fadeout_timer, attotime_never, NULL);
-- timer_adjust_oneshot(pce_cd.adpcm_fadeout_timer, attotime_never, NULL);
-+ timer_adjust_oneshot(pce_cd.cdda_fadeout_timer, attotime_never, 0);
-+ timer_adjust_oneshot(pce_cd.adpcm_fadeout_timer, attotime_never, 0);
- break;
- case 0x01: //CD-DA enable (100 msecs)
- pce_cd.cdda_volume = 0.0;
- timer_adjust_oneshot(pce_cd.cdda_fadein_timer, ATTOTIME_IN_USEC(100), 100);
-- timer_adjust_oneshot(pce_cd.cdda_fadeout_timer, attotime_never, NULL);
-+ timer_adjust_oneshot(pce_cd.cdda_fadeout_timer, attotime_never, 0);
- break;
- case 0x08: //CD-DA short (1500 msecs) fade out / ADPCM enable
- pce_cd.cdda_volume = 100.0;
- timer_adjust_oneshot(pce_cd.cdda_fadeout_timer, ATTOTIME_IN_USEC(1500), 1500);
- pce_cd.adpcm_volume = 0.0;
- timer_adjust_oneshot(pce_cd.adpcm_fadein_timer, ATTOTIME_IN_USEC(100), 100);
-- timer_adjust_oneshot(pce_cd.cdda_fadein_timer, attotime_never, NULL);
-- timer_adjust_oneshot(pce_cd.adpcm_fadeout_timer, attotime_never, NULL);
-+ timer_adjust_oneshot(pce_cd.cdda_fadein_timer, attotime_never, 0);
-+ timer_adjust_oneshot(pce_cd.adpcm_fadeout_timer, attotime_never, 0);
- break;
- case 0x09: //CD-DA long (5000 msecs) fade out
- pce_cd.cdda_volume = 100.0;
- timer_adjust_oneshot(pce_cd.cdda_fadeout_timer, ATTOTIME_IN_USEC(5000), 5000);
-- timer_adjust_oneshot(pce_cd.cdda_fadein_timer, attotime_never, NULL);
-+ timer_adjust_oneshot(pce_cd.cdda_fadein_timer, attotime_never, 0);
- break;
- case 0x0a: //ADPCM long (5000 msecs) fade out
- pce_cd.adpcm_volume = 100.0;
- timer_adjust_oneshot(pce_cd.adpcm_fadeout_timer, ATTOTIME_IN_USEC(5000), 5000);
-- timer_adjust_oneshot(pce_cd.adpcm_fadein_timer, attotime_never, NULL);
-+ timer_adjust_oneshot(pce_cd.adpcm_fadein_timer, attotime_never, 0);
- break;
- case 0x0c: //CD-DA short (1500 msecs) fade out / ADPCM enable
- pce_cd.cdda_volume = 100.0;
- timer_adjust_oneshot(pce_cd.cdda_fadeout_timer, ATTOTIME_IN_USEC(1500), 1500);
- pce_cd.adpcm_volume = 0.0;
- timer_adjust_oneshot(pce_cd.adpcm_fadein_timer, ATTOTIME_IN_USEC(100), 100);
-- timer_adjust_oneshot(pce_cd.cdda_fadein_timer, attotime_never, NULL);
-- timer_adjust_oneshot(pce_cd.adpcm_fadeout_timer, attotime_never, NULL);
-+ timer_adjust_oneshot(pce_cd.cdda_fadein_timer, attotime_never, 0);
-+ timer_adjust_oneshot(pce_cd.adpcm_fadeout_timer, attotime_never, 0);
- break;
- case 0x0d: //CD-DA short (1500 msecs) fade out
- pce_cd.cdda_volume = 100.0;
- timer_adjust_oneshot(pce_cd.cdda_fadeout_timer, ATTOTIME_IN_USEC(1500), 1500);
-- timer_adjust_oneshot(pce_cd.cdda_fadein_timer, attotime_never, NULL);
-+ timer_adjust_oneshot(pce_cd.cdda_fadein_timer, attotime_never, 0);
- break;
- case 0x0e: //ADPCM short (1500 msecs) fade out
- pce_cd.adpcm_volume = 100.0;
- timer_adjust_oneshot(pce_cd.adpcm_fadeout_timer, ATTOTIME_IN_USEC(1500), 1500);
-- timer_adjust_oneshot(pce_cd.adpcm_fadein_timer, attotime_never, NULL);
-+ timer_adjust_oneshot(pce_cd.adpcm_fadein_timer, attotime_never, 0);
- break;
- default:
- popmessage("CD-DA / ADPCM Fade effect mode %02x, contact MESSdev",data & 0x0f);