stardot / beebem-windows

BBC micro emulator for Windows
http://www.mkw.me.uk/beebem/
Other
90 stars 36 forks source link

DiscsPath not being saved in preferences #50

Closed ZXGuesser closed 5 years ago

ZXGuesser commented 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("DiscsPath")) { m_Preferences.SetStringValue("DiscsPath", "DiscIms"); }

chrisn commented 5 years ago

Thanks! Will fix and publish a new beta release.