mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 05:51:27 +12:00
GUI: Rename memory string searching tool to "Memory Searcher"
This commit is contained in:
parent
3d859a7493
commit
7352a5a495
2 changed files with 4 additions and 4 deletions
|
@ -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">
|
||||||
|
|
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue