Changes to logging - nothing (other than some parts of pc.c) uses the global pclog anymore (and logs will be almost empty (until the base set logging flags is agreed upon);
Fixes to various hard disk controllers; Added the Packard Bell PB640; Fixed the InPort mouse emulation - now it works correctly on Windows NT 3.1; Removed the status window and the associated variables; Completely removed the Green B 486 machine; Fixed the MDSI Genius; Fixed the single-sided 5.25" floppy drive; Ported a CPU-related commit from VARCem.
This commit is contained in:
@@ -42,7 +42,6 @@ enum fluid_interp {
|
||||
|
||||
|
||||
extern void givealbuffer_midi(void *buf, uint32_t size);
|
||||
extern void pclog(const char *format, ...);
|
||||
extern void al_set_midi(int freq, int buf_size);
|
||||
extern int soundon;
|
||||
|
||||
@@ -224,7 +223,6 @@ void fluidsynth_msg(uint8_t *msg)
|
||||
case 0xF0: /* SysEx */
|
||||
break;
|
||||
default:
|
||||
/* pclog("fluidsynth: unknown send() command 0x%02X", cmd); */
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -331,8 +329,6 @@ void* fluidsynth_init(const device_t *info)
|
||||
|
||||
al_set_midi(data->samplerate, data->buf_size);
|
||||
|
||||
/* pclog("fluidsynth (%s) initialized, samplerate %d, buf_size %d\n", f_fluid_version_str(), data->samplerate, data->buf_size); */
|
||||
|
||||
midi_device_t* dev = malloc(sizeof(midi_device_t));
|
||||
memset(dev, 0, sizeof(midi_device_t));
|
||||
|
||||
@@ -386,8 +382,6 @@ void fluidsynth_close(void* p)
|
||||
dynld_close(fluidsynth_handle);
|
||||
fluidsynth_handle = NULL;
|
||||
}
|
||||
|
||||
/* pclog("fluidsynth closed\n"); */
|
||||
}
|
||||
|
||||
static const device_config_t fluidsynth_config[] =
|
||||
|
||||
Reference in New Issue
Block a user