remove unnecessary string interpolation in a few places

This commit is contained in:
adelikat 2020-12-13 12:12:42 -06:00
parent 10d4f66248
commit 28f161ce18
3 changed files with 3 additions and 2 deletions

View File

@ -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>

View File

@ -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)

View File

@ -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)
{