diff options
| author | Tilka <tilkax@gmail.com> | 2024-08-14 23:54:16 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-14 23:54:16 +0100 |
| commit | 18ac8bf4055093d5aece0e631d04e4d38ec8f0c6 (patch) | |
| tree | 44fe8038aada312f60396c18053e2bd04f564619 /Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp | |
| parent | 1e8b3a58b2ef312e0904d7fbb2a37efaee96dc8f (diff) | |
| parent | 618b41a4593032a5c374069b37369e91ecf5db9e (diff) | |
Merge pull request #12990 from tygyh/Use-contains-method
Use 'contains' method
Diffstat (limited to 'Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp')
| -rw-r--r-- | Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp index c6ca41d64c..be1eb0a4b9 100644 --- a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp @@ -728,7 +728,7 @@ void CodeViewWidget::AutoStep(CodeTrace::AutoStop option) for (u32 i = 1; i <= 3; i++) { - if (results.mem_tracked.count(address + i)) + if (results.mem_tracked.contains(address + i)) iter++; else break; |
