mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 06:26:49 +00: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
|
|
@ -83,11 +83,11 @@ memory_string_searcher::memory_string_searcher(QWidget* parent, std::shared_ptr<
|
|||
{
|
||||
if (title.empty())
|
||||
{
|
||||
setWindowTitle(tr("String Searcher"));
|
||||
setWindowTitle(tr("Memory Searcher"));
|
||||
}
|
||||
else
|
||||
{
|
||||
setWindowTitle(tr("String Searcher Of %1").arg(title.data()));
|
||||
setWindowTitle(tr("Memory Searcher Of %1").arg(title.data()));
|
||||
}
|
||||
|
||||
setObjectName("memory_string_searcher");
|
||||
|
|
@ -316,7 +316,7 @@ u64 memory_string_searcher::OnSearch(std::string wstr, int mode)
|
|||
|
||||
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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue