diff options
author | Chris Robinson <[email protected]> | 2015-08-28 14:10:39 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2015-08-28 14:10:39 -0700 |
commit | e5fa4ee25dae8b242761052641dca5a4f8091359 (patch) | |
tree | 87a4e70d7465ae651e671d62c2e6e399bb210a19 /Alc/midi/soft.c | |
parent | bbc16e2c15b139cf2ef14eff9b3bcdb4933a5b0e (diff) |
Allow for device-specific config values
Diffstat (limited to 'Alc/midi/soft.c')
-rw-r--r-- | Alc/midi/soft.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/midi/soft.c b/Alc/midi/soft.c index e8050173..688924d4 100644 --- a/Alc/midi/soft.c +++ b/Alc/midi/soft.c @@ -123,7 +123,7 @@ MidiSynth *SSynth_create(ALCdevice *device) /* This option is temporary. Once this synth is in a more usable state, a * more generic selector should be used. */ - if(!GetConfigValueBool("midi", "internal-synth", 0)) + if(!GetConfigValueBool(NULL, "midi", "internal-synth", 0)) { TRACE("Not using internal MIDI synth\n"); return NULL; |