NSIO: Fix sloppy code in our Restore() method.

This commit is contained in:
Marco Cawthorne 2022-03-29 22:25:45 -07:00
parent 8c3804a1bc
commit e8de2b32bb
Signed by: eukara
GPG Key ID: C196CD8BA993248A
1 changed files with 6 additions and 6 deletions

View File

@ -248,14 +248,14 @@ NSIO::Restore(string strKey, string strValue)
case "OnUser1":
m_strOnUser1 = ReadString(strValue);
break;
case "OnUser1":
m_strOnUser1 = ReadString(strValue);
case "OnUser2":
m_strOnUser2 = ReadString(strValue);
break;
case "OnUser1":
m_strOnUser1 = ReadString(strValue);
case "OnUser3":
m_strOnUser3 = ReadString(strValue);
break;
case "OnUser1":
m_strOnUser1 = ReadString(strValue);
case "OnUser4":
m_strOnUser4 = ReadString(strValue);
break;
}
}