updated formats.

This commit is contained in:
morkt
2018-09-02 23:58:07 +04:00
parent 9cb100d0d2
commit 381f24ba7c
11 changed files with 39 additions and 7 deletions

View File

@@ -355,6 +355,7 @@ namespace GameRes.Formats.NonColor
uint Extend8Bit (byte v)
{
// 0xFF -> -1 -> 0xFFFFFFFF
return ExtendByteSign ? (uint)(int)(sbyte)v : v;
}