remove unnecessary string interpolation in a few places
This commit is contained in:
parent
10d4f66248
commit
28f161ce18
|
@ -365,6 +365,7 @@
|
|||
<s:Boolean x:Key="/Default/UserDictionary/Words/=hwnd/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=iiii/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=Intelli/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=Intellicart/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=Intellivision/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=inrate/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=ints/@EntryIndexedValue">True</s:Boolean>
|
||||
|
|
|
@ -27,7 +27,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
/// <remarks>To enforce the "static title" semantics for implementations, this getter will be called once and cached.</remarks>
|
||||
protected virtual string WindowTitleStatic => DesignMode
|
||||
? $"(will take value from WindowTitle/WindowTitleStatic)"
|
||||
? "(will take value from WindowTitle/WindowTitleStatic)"
|
||||
: throw new NotImplementedException("you have to implement this; the Designer prevents this from being an abstract method");
|
||||
|
||||
protected override void OnLoad(EventArgs e)
|
||||
|
|
|
@ -5,7 +5,7 @@ namespace BizHawk.Emulation.Cores.Intellivision
|
|||
{
|
||||
public sealed class Intellicart : ICart
|
||||
{
|
||||
public string BoardName => $"Intellicart";
|
||||
public string BoardName => "Intellicart";
|
||||
|
||||
public void SyncState(Serializer ser)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue