Skip to content

Commit

Permalink
xrGame: fix windows linkage
Browse files Browse the repository at this point in the history
  • Loading branch information
eagleivg committed Aug 18, 2018
1 parent 1970cc2 commit 773622a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/xrGame/ui/UIOptionsItem.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ class CUIOptionsItem
static CUIOptionsManager* GetOptionsManager() { return &m_optionsManager; }
virtual void OnMessage(LPCSTR message);

virtual void SetCurrentOptValue() = 0; // opt->current
virtual void SaveBackUpOptValue() = 0; // current->backup
virtual void SetCurrentOptValue() {} // opt->current
virtual void SaveBackUpOptValue() {} // current->backup
virtual void SaveOptValue() = 0; // current->opt
virtual void UndoOptValue() = 0; // backup->current
virtual bool IsChangedOptValue() const = 0; // backup!=current
Expand Down

0 comments on commit 773622a

Please sign in to comment.