X-Git-Url: https://scm.cri.ensmp.fr/git/minwii.git/blobdiff_plain/2e836fce8a862f12ed2eebb53a5c3b4a24e5bf0f..9ee138507f97c1dddedc10cb0d471bc201693e77:/src/minwii/synth.py diff --git a/src/minwii/synth.py b/src/minwii/synth.py index c1faee7..f8e8798 100755 --- a/src/minwii/synth.py +++ b/src/minwii/synth.py @@ -10,6 +10,7 @@ from fluidsynth import Synth as FSynth from log import console, envLogger, eventLogger import pygame import events +from config import SOUND_FONT class Synth(FSynth) : """ @@ -23,13 +24,7 @@ class Synth(FSynth) : FSynth.__init__(self, gain=gain, samplerate=samplerate) if not sfPath : - sfPath = realpath(__file__).split(sep) - sfPath = sfPath[:-1] - sfPath.append('soundfonts') - - sfPath.append('FluidR3_GM.sf2') - sfPath = sep.join(sfPath) - + sfPath = SOUND_FONT assert exists(sfPath) self.start()