diff --git a/BizHawk.Client.Common/movie/bk2/StringLogs.cs b/BizHawk.Client.Common/movie/bk2/StringLogs.cs
index 8fb22226e4..f4762a0437 100644
--- a/BizHawk.Client.Common/movie/bk2/StringLogs.cs
+++ b/BizHawk.Client.Common/movie/bk2/StringLogs.cs
@@ -10,9 +10,9 @@ namespace BizHawk.Client.Common
{
public static bool DefaultToDisk { get; set; }
- public static bool DefaultToAWE { get; set; }
+ public static bool DefaultToAwe { get; set; }
- /// is but not running on Windows host
+ /// is but not running on Windows host
public static IStringLog MakeStringLog()
{
if (DefaultToDisk)
@@ -20,7 +20,7 @@ namespace BizHawk.Client.Common
return new StreamStringLog(true);
}
- if (DefaultToAWE)
+ if (DefaultToAwe)
{
return OSTailoredCode.IsUnixHost
? throw new InvalidOperationException("logging to AWE is only available on Windows for now")
@@ -51,7 +51,7 @@ namespace BizHawk.Client.Common
{
public IStringLog Clone()
{
- ListStringLog ret = new ListStringLog();
+ var ret = new ListStringLog();
ret.AddRange(this);
return ret;
}
diff --git a/BizHawk.Client.EmuHawk/Program.cs b/BizHawk.Client.EmuHawk/Program.cs
index 54cf33cff8..a40004d29d 100644
--- a/BizHawk.Client.EmuHawk/Program.cs
+++ b/BizHawk.Client.EmuHawk/Program.cs
@@ -121,7 +121,7 @@ namespace BizHawk.Client.EmuHawk
Global.Config.ResolveDefaults();
StringLogUtil.DefaultToDisk = Global.Config.MoviesOnDisk;
- StringLogUtil.DefaultToAWE = Global.Config.MoviesInAwe;
+ StringLogUtil.DefaultToAwe = Global.Config.MoviesInAwe;
// super hacky! this needs to be done first. still not worth the trouble to make this system fully proper
if (Array.Exists(args, arg => arg.StartsWith("--gdi", StringComparison.InvariantCultureIgnoreCase)))