Closed ZXGuesser closed 5 years ago
There's a typo in beebwinprefs.cpp which results in the DiscsPath always being overwritten with the default string.
if (!m_Preferences.HasValue("DiscPath")) { m_Preferences.SetStringValue("DiscsPath", "DiscIms"); } should be
if (!m_Preferences.HasValue("DiscPath")) { m_Preferences.SetStringValue("DiscsPath", "DiscIms"); }
if (!m_Preferences.HasValue("DiscsPath")) { m_Preferences.SetStringValue("DiscsPath", "DiscIms"); }
Thanks! Will fix and publish a new beta release.
There's a typo in beebwinprefs.cpp which results in the DiscsPath always being overwritten with the default string.
if (!m_Preferences.HasValue("DiscPath")) { m_Preferences.SetStringValue("DiscsPath", "DiscIms"); }
should beif (!m_Preferences.HasValue("DiscsPath")) { m_Preferences.SetStringValue("DiscsPath", "DiscIms"); }