mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-11 01:25:07 +02:00
Make the i18n T function use std::string_view
Buildfixes, crashfixes One more Android buildfix Buildfix Qt
This commit is contained in:
@@ -33,7 +33,7 @@
|
||||
|
||||
class ButtonShapeScreen : public PopupScreen {
|
||||
public:
|
||||
ButtonShapeScreen(std::string title, int *setting) : PopupScreen(title), setting_(setting) {}
|
||||
ButtonShapeScreen(std::string_view title, int *setting) : PopupScreen(title), setting_(setting) {}
|
||||
|
||||
void CreatePopupContents(UI::ViewGroup *parent) override {
|
||||
using namespace UI;
|
||||
@@ -63,7 +63,7 @@ private:
|
||||
|
||||
class ButtonIconScreen : public PopupScreen {
|
||||
public:
|
||||
ButtonIconScreen(std::string title, int *setting) : PopupScreen(title), setting_(setting) {}
|
||||
ButtonIconScreen(std::string_view title, int *setting) : PopupScreen(title), setting_(setting) {}
|
||||
|
||||
void CreatePopupContents(UI::ViewGroup *parent) override {
|
||||
using namespace UI;
|
||||
|
||||
Reference in New Issue
Block a user