GUI: Rename memory string searching tool to "Memory Searcher"

This commit is contained in:
Eladash 2021-11-19 19:44:22 +02:00 committed by Megamouse
parent 3d859a7493
commit 7352a5a495
2 changed files with 4 additions and 4 deletions

View file

@ -628,7 +628,7 @@
<bool>false</bool> <bool>false</bool>
</property> </property>
<property name="text"> <property name="text">
<string>String Search</string> <string>Memory Searcher</string>
</property> </property>
</action> </action>
<action name="toolsDecryptSprxLibsAct"> <action name="toolsDecryptSprxLibsAct">

View file

@ -83,11 +83,11 @@ memory_string_searcher::memory_string_searcher(QWidget* parent, std::shared_ptr<
{ {
if (title.empty()) if (title.empty())
{ {
setWindowTitle(tr("String Searcher")); setWindowTitle(tr("Memory Searcher"));
} }
else else
{ {
setWindowTitle(tr("String Searcher Of %1").arg(title.data())); setWindowTitle(tr("Memory Searcher Of %1").arg(title.data()));
} }
setObjectName("memory_string_searcher"); setObjectName("memory_string_searcher");
@ -316,7 +316,7 @@ u64 memory_string_searcher::OnSearch(std::string wstr, int mode)
vm::reader_lock rlock; vm::reader_lock rlock;
const named_thread_group workers("String Searcher "sv, max_threads, [&]() const named_thread_group workers("Memory Searcher "sv, max_threads, [&]()
{ {
if (mode == as_inst || mode == as_fake_spu_inst) if (mode == as_inst || mode == as_fake_spu_inst)
{ {