mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-09-03 19:25:18 +02:00
Clean up the string type in RequestCallback - somehow was both char* and std::string????
Might be related to #21695
This commit is contained in:
@@ -758,8 +758,8 @@ void DeveloperToolsScreen::OnMIPSTracerPathChanged(UI::EventParams &e) {
|
||||
dev->T("Select the log file"),
|
||||
"trace.txt",
|
||||
BrowseFileType::ANY,
|
||||
[this](const std::string &value, int) {
|
||||
mipsTracer.set_logging_path(value);
|
||||
[this](std::string_view value, int) {
|
||||
mipsTracer.set_logging_path(std::string(value));
|
||||
MIPSTracerPath_ = value;
|
||||
MIPSTracerPath->SetRightText(MIPSTracerPath_);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user