Skip to content

Commit

Permalink
Fixed bug in GetGlobalOption for DefaultOutputFont and DefaultTimersFile
Browse files Browse the repository at this point in the history
Those two options inadvertently had a trailing space in them.
  • Loading branch information
nickgammon authored Jul 10, 2024
1 parent c93ddf9 commit 64e3670
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions globalregistryoptions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ static tGlobalConfigurationAlphaOption AlphaGlobalOptionsTable [] = {
{ GLB_ALPHA_OPT (m_strDefaultLogFileDirectory ), "DefaultLogFileDirectory", ".\\logs\\" },
{ GLB_ALPHA_OPT (m_strDefaultMacrosFile ), "DefaultMacrosFile", "" },
{ GLB_ALPHA_OPT (m_strDefaultNameGenerationFile), "DefaultNameGenerationFile", "names.txt" },
{ GLB_ALPHA_OPT (m_strDefaultOutputFont ), "DefaultOutputFont ", "FixedSys" },
{ GLB_ALPHA_OPT (m_strDefaultTimersFile ), "DefaultTimersFile ", "" },
{ GLB_ALPHA_OPT (m_strDefaultOutputFont ), "DefaultOutputFont", "FixedSys" },
{ GLB_ALPHA_OPT (m_strDefaultTimersFile ), "DefaultTimersFile", "" },
{ GLB_ALPHA_OPT (m_strDefaultTriggersFile ), "DefaultTriggersFile", "" },
{ GLB_ALPHA_OPT (m_strDefaultWorldFileDirectory), "DefaultWorldFileDirectory", ".\\worlds\\" },
{ GLB_ALPHA_OPT (m_strNotepadQuoteString ), "NotepadQuoteString", "> " },
Expand Down

0 comments on commit 64e3670

Please sign in to comment.