From 6d6c0e23f330775ddc18e83d3e237c434cbf0305 Mon Sep 17 00:00:00 2001 From: JordanSantiagoYT Date: Sun, 15 Oct 2023 19:26:07 -0400 Subject: [PATCH] e --- source/Paths.hx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/Paths.hx b/source/Paths.hx index a927f6f73da..af4e5d595fa 100644 --- a/source/Paths.hx +++ b/source/Paths.hx @@ -66,9 +66,9 @@ class Paths public static var dumpExclusions:Array = [ - 'assets/music/freakyMenu.$SOUND_EXT', - 'assets/shared/music/breakfast.$SOUND_EXT', - 'assets/shared/music/tea-time.$SOUND_EXT', + SUtil.getPath() + 'assets/music/freakyMenu.$SOUND_EXT', + SUtil.getPath() + 'assets/shared/music/breakfast.$SOUND_EXT', + SUtil.getPath() + 'assets/shared/music/tea-time.$SOUND_EXT', ]; /// haya I love you for the base cache dump I took to the max public static function clearUnusedMemory() { @@ -167,7 +167,7 @@ class Paths inline public static function getPreloadPath(file:String = '') { - return SUtil.getPath() + 'assets/$file'; + return 'assets/$file'; } inline static public function file(file:String, type:AssetType = TEXT, ?library:String)