From 9b51dd7d667e97338a92711543fc3e942faae52f Mon Sep 17 00:00:00 2001 From: Vitaly Novichkov Date: Mon, 21 Sep 2020 00:43:58 +0300 Subject: Added WinMM driver for windows (#236) * ADLMIDI2: Fixed an MSVC build However, it may work glitchy! * Experimental WinMM MIDI driver TODO: Make a control panel to configure the driver * WinMM-DRV: A workaround for older MinGW * WinMM-DRV: WIP control panel appled / tool * WinMM-DRV: Better test a driver's work * WinMM-DRV: More progress on a control panel * WinMM-DRV: And more progress on this control panel It's almost completed, I need to make the working setup through a registry. * WinMM-DRV: Driver is almost ready However, control panel can't ping a driver to reload settings yet * WinMM-DRV: Fix the missing volume model setup * WinMM-DRV: Setup reload on the fly now work! * WinMM-DRV: Stabilize the thing * WinMM-DRV: Stabilizing * WinMM-DRV: Avoid all "setup" in names to avoid a stupid PCA thing: https://stackoverflow.com/questions/17660404/how-to-programmatically-disable-program-compatibility-assistant-in-windows-7-and * A small warning fix at the WOPL module * WinMM-DRV: Fixed some warnings * WinMM-DRV: Avoid PCA dialog on the installer * WiNMM-DRV: Make the linking of pthread being optional Required to use MinGW-w64 toolchain with the "win32" threading mode * WinMM-DRV: Receive the MODM_RESET to reset the MIDI state * WinMM-DRV: Attempt to fix a sound distorsion on song song * WinMM-Drv: Fixed a build on some older MinGW toolchains * WinMM-Drv: Fixed default settings not being loaded --- src/wopl/wopl_file.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/wopl/wopl_file.c') diff --git a/src/wopl/wopl_file.c b/src/wopl/wopl_file.c index b712020..5c96e41 100644 --- a/src/wopl/wopl_file.c +++ b/src/wopl/wopl_file.c @@ -173,7 +173,8 @@ static void WOPL_parseInstrument(WOPLInstrument *ins, uint8_t *cursor, uint16_t static void WOPL_writeInstrument(WOPLInstrument *ins, uint8_t *cursor, uint16_t version, uint8_t has_sounding_delays) { int l; - strncpy((char*)cursor, ins->inst_name, 32); + memcpy((char*)cursor, ins->inst_name, 32); + cursor[32] = '\0'; fromSint16BE(ins->note_offset1, cursor + 32); fromSint16BE(ins->note_offset2, cursor + 34); cursor[36] = (uint8_t)ins->midi_velocity_offset; @@ -278,7 +279,7 @@ WOPLFile *WOPL_LoadBankFromMem(void *mem, size_t length, int *error) outFile->version = version; outFile->opl_flags = head[4]; outFile->volume_model = head[5]; - } + } bankslots_sizes[0] = count_melodic_banks; bankslots[0] = outFile->banks_melodic; -- cgit v1.2.3