From 419c63af93ba85079525a44c031f5f6aead6b6e6 Mon Sep 17 00:00:00 2001 From: dexy Date: Sat, 7 Mar 2020 23:03:47 +1100 Subject: [PATCH] Fixed accessibility on Dat54StreamingSound.Duration --- CodeWalker.Core/GameFiles/FileTypes/RelFile.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CodeWalker.Core/GameFiles/FileTypes/RelFile.cs b/CodeWalker.Core/GameFiles/FileTypes/RelFile.cs index e644ffb..d6cc34f 100644 --- a/CodeWalker.Core/GameFiles/FileTypes/RelFile.cs +++ b/CodeWalker.Core/GameFiles/FileTypes/RelFile.cs @@ -2733,7 +2733,7 @@ namespace CodeWalker.GameFiles } [TC(typeof(EXP))] public class Dat54StreamingSound : Dat54Sound { - int Duration { get; set; } //0x0-0x4 + public int Duration { get; set; } //0x0-0x4 public Dat54StreamingSound(RelFile rel) : base(rel, Dat54SoundType.StreamingSound) { }