This reverts commit 3ba5c4bf3e.
3ba5c4bf3e
@ -2,6 +2,6 @@ FluidFilesPath {
*new {
arg fileName;
fileName = fileName ? "";
^("%/../AudioFiles".format(File.realpath(FluidDataSet.class.filenameSymbol).dirname) +/+ fileName);
^("%/../AudioFiles/".format(File.realpath(FluidDataSet.class.filenameSymbol).dirname) +/+ fileName);
}
@ -1,7 +1,6 @@
(
// should all return the same path:
(FluidFilesPath()++"Nicol-LoopE-M.wav").postln;
(FluidFilesPath()+/+"Nicol-LoopE-M.wav").postln;
FluidFilesPath("Nicol-LoopE-M.wav").postln;
FluidFilesPath("/Nicol-LoopE-M.wav").postln;
)