Bug : Put parentheses around IS_COMMAND and its parameters
Signed-off-by: Gabriel Ravier <gabravier@gmail.com>
This commit is contained in:
parent
4e322f25c4
commit
571a7ca723
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@
|
|||
#include "Stage.h"
|
||||
#include "Tags.h"
|
||||
|
||||
#define IS_COMMAND(c1, c2, c3) gTS.data[gTS.p_read + 1] == c1 && gTS.data[gTS.p_read + 2] == c2 && gTS.data[gTS.p_read + 3] == c3
|
||||
#define IS_COMMAND(c1, c2, c3) (gTS.data[gTS.p_read + 1] == (c1) && gTS.data[gTS.p_read + 2] == (c2) && gTS.data[gTS.p_read + 3] == (c3))
|
||||
|
||||
#define TSC_BUFFER_SIZE 0x5000
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue