Revert "Fix MIDI Soundfont code shadowing a global variable."

This reverts commit 8a1b36322d.
This commit is contained in:
toaster 2019-08-04 11:28:04 +01:00
parent f8e4a2431a
commit d880a02fa1

View file

@ -158,14 +158,14 @@ static void MidiSoundfontPath_Onchange(void)
if (stricmp(Mix_GetSoundFonts(), cv_midisoundfontpath.string))
{
char *miditoken;
char *token;
char *source = strdup(cv_midisoundfontpath.string);
boolean proceed = true;
// check if file exists; menu calls this method at every keystroke
while ((miditoken = strtok_r(source, ";", &source)))
while ((token = strtok_r(source, ";", &source)))
{
SDL_RWops *rw = SDL_RWFromFile(miditoken, "r");
SDL_RWops *rw = SDL_RWFromFile(token, "r");
if (rw != NULL)
SDL_RWclose(rw);
else