mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2025-12-06 04:04:53 +01:00
Add Settings::ui_notification_position.
This commit is contained in:
parent
ba49e5618c
commit
816479259b
3 changed files with 30 additions and 1 deletions
|
|
@ -77,7 +77,7 @@ struct Settings_Background_Task {
|
|||
class Settings {
|
||||
CSteamID steam_id;
|
||||
CGameID game_id;
|
||||
std::string name, language;
|
||||
std::string name, language, ui_notification_position;
|
||||
CSteamID lobby_id;
|
||||
uint32 preferred_network_image_type;
|
||||
bool background_thread_exit;
|
||||
|
|
@ -209,6 +209,10 @@ public:
|
|||
void set_show_achievement_desc_on_unlock(bool set) { this->showAchievementDescOnUnlock = set; }
|
||||
bool get_show_achievement_hidden_unearned() { return showAchievementHiddenUnearned; }
|
||||
void set_show_achievement_hidden_unearned(bool set) { this->showAchievementHiddenUnearned = set; }
|
||||
|
||||
//UI
|
||||
std::string get_ui_notification_position();
|
||||
void set_ui_notification_position(char * pos);
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue