mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-22 22:09:12 +00:00
This commit is contained in:
parent
cfb4e0a35f
commit
b1e593bb60
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue