mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Minor code cleanup / warning fix
This commit is contained in:
parent
360de9a372
commit
474999c462
1 changed files with 5 additions and 5 deletions
|
@ -81,7 +81,6 @@ private:
|
|||
|
||||
class LogScreen : public UIDialogScreenWithBackground {
|
||||
public:
|
||||
LogScreen() : toBottom_(false) {}
|
||||
void CreateViews() override;
|
||||
void update() override;
|
||||
|
||||
|
@ -90,10 +89,11 @@ public:
|
|||
private:
|
||||
void UpdateLog();
|
||||
UI::EventReturn OnSubmit(UI::EventParams &e);
|
||||
UI::TextEdit *cmdLine_;
|
||||
UI::LinearLayout *vert_;
|
||||
UI::ScrollView *scroll_;
|
||||
bool toBottom_;
|
||||
|
||||
UI::TextEdit *cmdLine_ = nullptr;
|
||||
UI::LinearLayout *vert_ = nullptr;
|
||||
UI::ScrollView *scroll_ = nullptr;
|
||||
bool toBottom_ = false;
|
||||
};
|
||||
|
||||
class LogLevelScreen : public ListPopupScreen {
|
||||
|
|
Loading…
Add table
Reference in a new issue