diff options
| author | 2026-04-24 17:18:24 +0700 | |
|---|---|---|
| committer | 2026-04-24 17:19:47 +0700 | |
| commit | 789e49108dfda46814c82b42945edb8764d8fbb5 (patch) | |
| tree | 08d29805e1d4dbb918ecfba86511ce13b1f11ed3 /src/devices | |
| parent | 55a64a57ea7821f38241aa4287d29e95aae87001 (diff) | |
machine/i7110.cpp: use logical operator for boolean expression
Diffstat (limited to 'src/devices')
| -rw-r--r-- | src/devices/machine/i7110.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/i7110.cpp b/src/devices/machine/i7110.cpp index 7a518b74c2d..7a1d91a3999 100644 --- a/src/devices/machine/i7110.cpp +++ b/src/devices/machine/i7110.cpp @@ -603,7 +603,7 @@ template<std::size_t N> void fsa_channel_device::rotate(std::bitset<N>& bits, bo bool fsa_channel_device::detector_r() const { - return m_even_out[ EVEN_OUT_DET_POS ] | m_odd_out[ ODD_OUT_DET_POS ]; + return m_even_out[ EVEN_OUT_DET_POS ] || m_odd_out[ ODD_OUT_DET_POS ]; } void fsa_channel_device::generate(bool bit) |
