cleanup Bk2Movie.HeaderApi.cs
This commit is contained in:
parent
f926142921
commit
f0f8cd3171
|
@ -15,11 +15,7 @@ namespace BizHawk.Client.Common
|
||||||
|
|
||||||
public string SyncSettingsJson
|
public string SyncSettingsJson
|
||||||
{
|
{
|
||||||
get
|
get => _syncSettingsJson;
|
||||||
{
|
|
||||||
return _syncSettingsJson;
|
|
||||||
}
|
|
||||||
|
|
||||||
set
|
set
|
||||||
{
|
{
|
||||||
if (_syncSettingsJson != value)
|
if (_syncSettingsJson != value)
|
||||||
|
@ -154,11 +150,7 @@ namespace BizHawk.Client.Common
|
||||||
|
|
||||||
public string Hash
|
public string Hash
|
||||||
{
|
{
|
||||||
get
|
get => Header[HeaderKeys.SHA1];
|
||||||
{
|
|
||||||
return Header[HeaderKeys.SHA1];
|
|
||||||
}
|
|
||||||
|
|
||||||
set
|
set
|
||||||
{
|
{
|
||||||
if (Header[HeaderKeys.SHA1] != value)
|
if (Header[HeaderKeys.SHA1] != value)
|
||||||
|
@ -171,11 +163,7 @@ namespace BizHawk.Client.Common
|
||||||
|
|
||||||
public string Author
|
public string Author
|
||||||
{
|
{
|
||||||
get
|
get => Header[HeaderKeys.AUTHOR];
|
||||||
{
|
|
||||||
return Header[HeaderKeys.AUTHOR];
|
|
||||||
}
|
|
||||||
|
|
||||||
set
|
set
|
||||||
{
|
{
|
||||||
if (Header[HeaderKeys.AUTHOR] != value)
|
if (Header[HeaderKeys.AUTHOR] != value)
|
||||||
|
@ -188,11 +176,7 @@ namespace BizHawk.Client.Common
|
||||||
|
|
||||||
public string Core
|
public string Core
|
||||||
{
|
{
|
||||||
get
|
get => Header[HeaderKeys.CORE];
|
||||||
{
|
|
||||||
return Header[HeaderKeys.CORE];
|
|
||||||
}
|
|
||||||
|
|
||||||
set
|
set
|
||||||
{
|
{
|
||||||
if (Header[HeaderKeys.CORE] != value)
|
if (Header[HeaderKeys.CORE] != value)
|
||||||
|
@ -205,11 +189,7 @@ namespace BizHawk.Client.Common
|
||||||
|
|
||||||
public string BoardName
|
public string BoardName
|
||||||
{
|
{
|
||||||
get
|
get => Header[HeaderKeys.BOARDNAME];
|
||||||
{
|
|
||||||
return Header[HeaderKeys.BOARDNAME];
|
|
||||||
}
|
|
||||||
|
|
||||||
set
|
set
|
||||||
{
|
{
|
||||||
if (Header[HeaderKeys.BOARDNAME] != value)
|
if (Header[HeaderKeys.BOARDNAME] != value)
|
||||||
|
@ -222,11 +202,7 @@ namespace BizHawk.Client.Common
|
||||||
|
|
||||||
public string EmulatorVersion
|
public string EmulatorVersion
|
||||||
{
|
{
|
||||||
get
|
get => Header[HeaderKeys.EMULATIONVERSION];
|
||||||
{
|
|
||||||
return Header[HeaderKeys.EMULATIONVERSION];
|
|
||||||
}
|
|
||||||
|
|
||||||
set
|
set
|
||||||
{
|
{
|
||||||
if (Header[HeaderKeys.EMULATIONVERSION] != value)
|
if (Header[HeaderKeys.EMULATIONVERSION] != value)
|
||||||
|
@ -239,11 +215,7 @@ namespace BizHawk.Client.Common
|
||||||
|
|
||||||
public string FirmwareHash
|
public string FirmwareHash
|
||||||
{
|
{
|
||||||
get
|
get => Header[HeaderKeys.FIRMWARESHA1];
|
||||||
{
|
|
||||||
return Header[HeaderKeys.FIRMWARESHA1];
|
|
||||||
}
|
|
||||||
|
|
||||||
set
|
set
|
||||||
{
|
{
|
||||||
if (Header[HeaderKeys.FIRMWARESHA1] != value)
|
if (Header[HeaderKeys.FIRMWARESHA1] != value)
|
||||||
|
|
Loading…
Reference in New Issue