Prefer ReadUInt8 over ReadByte.

The former will throw when the end of the stream is reached, rather than requiring the caller to check for -1.
This commit is contained in:
RoosterDragon
2020-10-18 11:35:21 +01:00
committed by abcdefg30
parent f5f2f58664
commit aac1bae899
10 changed files with 39 additions and 39 deletions

View File

@@ -21,7 +21,7 @@ namespace OpenRA.Mods.Cnc.SpriteLoaders
public class ShpD2Loader : ISpriteLoader
{
[Flags]
enum FormatFlags : int
enum FormatFlags : ushort
{
PaletteTable = 1,
NotLCWCompressed = 2,

View File

@@ -73,7 +73,7 @@ namespace OpenRA.Mods.Cnc.SpriteLoaders
public class ShpTDSprite
{
enum Format { XORPrev = 0x20, XORLCW = 0x40, LCW = 0x80 }
enum Format : ushort { XORPrev = 0x20, XORLCW = 0x40, LCW = 0x80 }
sealed class ImageHeader : ISpriteFrame
{