diff options
author | 2014-02-20 18:18:29 +0000 | |
---|---|---|
committer | 2014-02-20 18:18:29 +0000 | |
commit | 3138b2c6600a92a422800f81a6ecbb3700da4af8 (patch) | |
tree | 0fd8bd0a89d9397bd897bdbfb5052ca41fb13e0a /src/emu/cpu/tms32031/tms32031.c | |
parent | d8ba983889bd61a07bbc15c4cee3719819271ac0 (diff) |
second round of clang 3.4 fixes for MESS (nw)
Diffstat (limited to 'src/emu/cpu/tms32031/tms32031.c')
-rw-r--r-- | src/emu/cpu/tms32031/tms32031.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/cpu/tms32031/tms32031.c b/src/emu/cpu/tms32031/tms32031.c index 3e85f2ffe10..3ad69d45df9 100644 --- a/src/emu/cpu/tms32031/tms32031.c +++ b/src/emu/cpu/tms32031/tms32031.c @@ -67,9 +67,9 @@ const int LVFLAG = 0x0020; const int LUFFLAG = 0x0040; const int OVMFLAG = 0x0080; const int RMFLAG = 0x0100; -const int CFFLAG = 0x0400; -const int CEFLAG = 0x0800; -const int CCFLAG = 0x1000; +//const int CFFLAG = 0x0400; +//const int CEFLAG = 0x0800; +//const int CCFLAG = 0x1000; const int GIEFLAG = 0x2000; |