Use paths.get() when pathGroups was already checked.

This commit is contained in:
player-03
2024-01-18 13:56:44 -05:00
committed by GitHub
parent 3c431559df
commit 40d70d8e53

View File

@@ -477,7 +477,7 @@ class AssetLibrary
} }
else else
{ {
return AudioBuffer.loadFromFile(getPath(id)); return AudioBuffer.loadFromFile(paths.get(id));
} }
} }
} }