mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Typo fix, thanks oltolm
This commit is contained in:
parent
7547126a7d
commit
eb317378e3
1 changed files with 2 additions and 2 deletions
|
@ -267,8 +267,8 @@ UI::EventReturn SavedataPopupScreen::OnDeleteButtonClick(UI::EventParams &e) {
|
|||
return UI::EVENT_DONE;
|
||||
}
|
||||
|
||||
static std::string CleanSaveString(const std::string &str) {
|
||||
std::string s = ReplaceAll(s, "\n", " ");
|
||||
static std::string CleanSaveString(std::string_view str) {
|
||||
std::string s = ReplaceAll(str, "\n", " ");
|
||||
s = ReplaceAll(s, "\r", " ");
|
||||
return s;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue