diff options
author | 2021-10-03 03:52:22 +1100 | |
---|---|---|
committer | 2021-10-03 03:52:22 +1100 | |
commit | 299265cc52149af55581ad4fd62772144a17d452 (patch) | |
tree | 0c3cbefe1fbb28eb059ad61b2caaa0a14061b28a /src/lib/util/delegate.cpp | |
parent | 0eeb918991d9d9d5acac6eab82fb6b73b9ff71b4 (diff) |
bus/rs232: Added a configurable patch box device, and various cleanups.
Added comments with V.24 interchange circuit numbers and names to
rs232.h to make the meanings of the abbreviated signal names clearer.
Moved a few slot card classes out of headers and into anonymous
namespaces to reduce compile depedencies and exported symbols.
Transliterated a Korean NES game title.
Diffstat (limited to 'src/lib/util/delegate.cpp')
-rw-r--r-- | src/lib/util/delegate.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util/delegate.cpp b/src/lib/util/delegate.cpp index 5632d5c507b..09c2d77496f 100644 --- a/src/lib/util/delegate.cpp +++ b/src/lib/util/delegate.cpp @@ -191,7 +191,7 @@ delegate_generic_function delegate_mfp_msvc::adjust_this_pointer(delegate_generi LOG("redirecting to %p\n", func); continue; } - if ((0x40 == func[5]) && (0x48 == func[7]) && (0xff == func[8]) && (0xe0 == func[9])) + else if ((0x40 == func[5]) && (0x48 == func[7]) && (0xff == func[8]) && (0xe0 == func[9])) { // 8-bit displacement LOG("Found virtual member function thunk at %p ", func); |