Fix module paths for haxe 5

Haxe 5 will no longer support module resolution like this. See:
https://github.com/HaxeFoundation/haxe/issues/9150
This commit is contained in:
Tobiasz Laskowski
2024-12-23 17:29:43 +00:00
committed by Josh Tynjala
parent 69086df206
commit 37e7580720

View File

@@ -167,7 +167,7 @@ class FlashHelper
var frameData = frameDataWriter.getBytes();
var snd:format.swf.Sound =
var snd:format.swf.Data.Sound =
{
sid: cid,
format: SFMP3,
@@ -255,7 +255,7 @@ class FlashHelper
{
var sampleCount = Std.int(wav.data.length / (hdr.bitsPerSample / 8));
var snd:format.swf.Sound =
var snd:format.swf.Data.Sound =
{
sid: cid,
format: SFLittleEndianUncompressed,