Skip to content

Commit

Permalink
MP1-1.33 Pre-Test2: MiniDisplayLibrary: Fixed registry path for iMon …
Browse files Browse the repository at this point in the history
…display autodetection
  • Loading branch information
epbk committed Nov 25, 2023
1 parent 277e938 commit 2a6b03d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,7 @@ public override void Setup(string port, int lines, int cols, int delay, int line
string curBrand = _BrandTable[i, 0];
string curApp = _BrandTable[i, 1];
Log.Info("iMONLCDg.Setup(): checking registry for " + curBrand + " entries");
RegistryKey key = Registry.CurrentUser.OpenSubKey(@"Software" + curBrand + "\\" + curApp, false);
RegistryKey key = Registry.CurrentUser.OpenSubKey(@"Software"+ "\\" + curBrand + "\\" + curApp, false);
if (key != null)
{
num3 = (int)key.GetValue("LastVFD", 0);
Expand Down

0 comments on commit 2a6b03d

Please sign in to comment.