Reply to Re: A New Version of Dink?
If you don't have an account, just leave the password field blank.
Update! Original post edited for clarity.
I fixed the loopmidi() freeze at the beginning of DMODs! It was missing a return statement...which for some reason only caused problems in Main.c and not elsewhere.
Not sure if anyone cares too much, but this was how it was fixed:
I fixed the loopmidi() freeze at the beginning of DMODs! It was missing a return statement...which for some reason only caused problems in Main.c and not elsewhere.
Not sure if anyone cares too much, but this was how it was fixed:
if (compare(ev[1], "loopmidi")) { h = &h[strlen(ev[1])]; int p[20] = {1,0,0,0,0,0,0,0,0,0}; if (get_parms(ev[1], script, h, p)) { if ( nlist[0] > 0 ) { mLoopMidi = true; } else { mLoopMidi = false; } } //TheNewGuy: this was missing, causing errors at startup! strcpy(s, h); return(0); }