add GameInfo DB options fetcher for string type
This commit is contained in:
parent
0964d75d05
commit
a6f37173b0
|
@ -101,6 +101,11 @@ namespace BizHawk.Emulation.Common
|
|||
return int.Parse(Options[option]);
|
||||
}
|
||||
|
||||
public string GetStringValue(string option)
|
||||
{
|
||||
return Options[option];
|
||||
}
|
||||
|
||||
public int GetHexValue(string option)
|
||||
{
|
||||
return int.Parse(Options[option], NumberStyles.HexNumber);
|
||||
|
|
Loading…
Reference in New Issue