Skip to content

Commit

Permalink
Make showing nag window a temp setting
Browse files Browse the repository at this point in the history
  • Loading branch information
project64 committed Jun 14, 2021
1 parent d647cd8 commit 8040e8a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
4 changes: 1 addition & 3 deletions Source/Project64/Settings/UISettings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ void RegisterUISettings (void)
AddUISetting(UserInterface_AlwaysOnTop, new CSettingTypeApplication("Settings", "Always on top", (uint32_t)false));
AddUISetting(UserInterface_ShowStatusBar, new CSettingTypeApplication("Settings", "Show Status Bar", true));
AddUISetting(UserInterface_ExitFullscreenOnLoseFocus, new CSettingTypeApplication("Settings", "Exit Full Screen On Lose Focus", false));
AddUISetting(UserInterface_ShowingNagWindow, new CSettingTypeApplication("Settings", "Showing Nag Window", false));
AddUISetting(UserInterface_ShowingNagWindow, new CSettingTypeTempBool(false));

AddUISetting(RomBrowser_Enabled, new CSettingTypeApplication("Rom Browser", "Rom Browser", true));
AddUISetting(RomBrowser_ColoumnsChanged, new CSettingTypeTempBool(false));
Expand All @@ -62,8 +62,6 @@ void RegisterUISettings (void)
AddUISetting(File_RecentGameFileCount, new CSettingTypeApplication("Settings", "Remembered Rom Files", (uint32_t)10));
AddUISetting(File_RecentGameFileIndex, new CSettingTypeApplicationIndex("Recent File", "Recent Rom", Default_None));

AddUISetting(SupportWindows_RunCount, new CSettingTypeApplication("Support Project64", "Run Count", (uint32_t)0));

// Debugger UI
AddUISetting(DebuggerUI_CommandsPos, new CSettingTypeApplication("Debugger UI", "Commands Pos", Default_None));
AddUISetting(DebuggerUI_MemoryPos, new CSettingTypeApplication("Debugger UI", "Memory Pos", Default_None));
Expand Down
3 changes: 0 additions & 3 deletions Source/Project64/Settings/UISettings.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,6 @@ enum UISettingID
File_RecentGameFileCount,
File_RecentGameFileIndex,

// Support window
SupportWindows_RunCount,

// Debugger UI window positions and sizes
DebuggerUI_CommandsPos,
DebuggerUI_MemoryPos,
Expand Down

0 comments on commit 8040e8a

Please sign in to comment.