From d7ab59398660aa387f9521a6efe0ee2f8a4d6e73 Mon Sep 17 00:00:00 2001 From: BackrndSource Date: Fri, 31 Jan 2025 16:00:14 +0100 Subject: [PATCH] MemorySearch: No search LIMIT --- src/platform/qt/MemorySearch.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platform/qt/MemorySearch.h b/src/platform/qt/MemorySearch.h index 28b5a2572..48aea748b 100644 --- a/src/platform/qt/MemorySearch.h +++ b/src/platform/qt/MemorySearch.h @@ -19,7 +19,7 @@ class MemorySearch : public QWidget { Q_OBJECT public: - static constexpr size_t LIMIT = 10000; + static constexpr size_t LIMIT = 0; MemorySearch(std::shared_ptr controller, QWidget* parent = nullptr); ~MemorySearch();