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:
committed by
Josh Tynjala
parent
69086df206
commit
37e7580720
@@ -167,7 +167,7 @@ class FlashHelper
|
|||||||
|
|
||||||
var frameData = frameDataWriter.getBytes();
|
var frameData = frameDataWriter.getBytes();
|
||||||
|
|
||||||
var snd:format.swf.Sound =
|
var snd:format.swf.Data.Sound =
|
||||||
{
|
{
|
||||||
sid: cid,
|
sid: cid,
|
||||||
format: SFMP3,
|
format: SFMP3,
|
||||||
@@ -255,7 +255,7 @@ class FlashHelper
|
|||||||
{
|
{
|
||||||
var sampleCount = Std.int(wav.data.length / (hdr.bitsPerSample / 8));
|
var sampleCount = Std.int(wav.data.length / (hdr.bitsPerSample / 8));
|
||||||
|
|
||||||
var snd:format.swf.Sound =
|
var snd:format.swf.Data.Sound =
|
||||||
{
|
{
|
||||||
sid: cid,
|
sid: cid,
|
||||||
format: SFLittleEndianUncompressed,
|
format: SFLittleEndianUncompressed,
|
||||||
|
|||||||
Reference in New Issue
Block a user