mirror of
https://github.com/crskycode/GARbro.git
synced 2026-07-08 01:30:18 +08:00
feat: support AGES mkII archive and audio
TODO: epk decrypt, raw PCM support
This commit is contained in:
@@ -113,6 +113,11 @@ namespace GameRes.Utility
|
||||
return GetCString (data, index, length_limit, Encodings.cp932);
|
||||
}
|
||||
|
||||
public static string GetCString (byte[] data, int index, Encoding enc)
|
||||
{
|
||||
return GetCString (data, index, data.Length - index, enc);
|
||||
}
|
||||
|
||||
public static string GetCString (byte[] data, int index)
|
||||
{
|
||||
return GetCString (data, index, data.Length - index, Encodings.cp932);
|
||||
|
||||
Reference in New Issue
Block a user