summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/bcreader.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/bcreader.h')
-rw-r--r--src/devices/machine/bcreader.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/bcreader.h b/src/devices/machine/bcreader.h
index bc94f6dd92e..661c3008198 100644
--- a/src/devices/machine/bcreader.h
+++ b/src/devices/machine/bcreader.h
@@ -33,7 +33,7 @@ public:
int read_pixel();
// TODO: add checksum validation!
- bool is_valid(int len) { return (len != 12 && len != 13 && len != 8) ? FALSE : TRUE; }
+ bool is_valid(int len) { return (len != 12 && len != 13 && len != 8) ? false : true; }
void decode(int len);
protected: