This commit is contained in:
kudzu_cp 2011-07-09 22:00:12 +00:00
parent cfb4e0a35f
commit b1e593bb60

View file

@ -61,7 +61,7 @@ namespace Cosmos.Debug.Common {
protected Action<byte[]> mCompleted; // Action to call after size received
protected void SizePacket(byte[] aPacket) {
int xSize = aPacket[0] + aPacket[1] << 8;
int xSize = aPacket[0] + (aPacket[1] << 8);
Next(xSize, mCompleted);
}