diff options
Diffstat (limited to 'src/devices/cpu/drcbeut.cpp')
-rw-r--r-- | src/devices/cpu/drcbeut.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/drcbeut.cpp b/src/devices/cpu/drcbeut.cpp index 3bd0edac4a1..356045fad3b 100644 --- a/src/devices/cpu/drcbeut.cpp +++ b/src/devices/cpu/drcbeut.cpp @@ -359,7 +359,7 @@ UINT32 drc_map_variables::get_value(drccodeptr codebase, UINT32 mapvar) const UINT64 *endscan = (UINT64 *)m_cache.top(); // look for the signature - while (curscan < endscan && *curscan++ != m_uniquevalue) ; + while (curscan < endscan && *curscan++ != m_uniquevalue) {}; if (curscan >= endscan) return 0; |