From c3e0d8824c78fb5630b82b11829cfa9a5cfdc177 Mon Sep 17 00:00:00 2001 From: beirich Date: Tue, 8 Apr 2014 02:25:46 +0000 Subject: [PATCH] zero warnings! --- BizHawk.Client.Common/lua/EmuLuaLibrary.Bit.cs | 2 +- BizHawk.Client.EmuHawk/MainForm.Designer.cs | 1 - BizHawk.Client.EmuHawk/PresentationPanel.cs | 2 -- BizHawk.Common/Util.cs | 6 +----- 4 files changed, 2 insertions(+), 9 deletions(-) diff --git a/BizHawk.Client.Common/lua/EmuLuaLibrary.Bit.cs b/BizHawk.Client.Common/lua/EmuLuaLibrary.Bit.cs index 46eaf78c79..f10320e5ce 100644 --- a/BizHawk.Client.Common/lua/EmuLuaLibrary.Bit.cs +++ b/BizHawk.Client.Common/lua/EmuLuaLibrary.Bit.cs @@ -91,7 +91,7 @@ )] public static uint Set(uint num, int pos) { - return (uint)(num | 1 << pos); + return (uint)(num | (uint)1 << pos); } [LuaMethodAttributes( diff --git a/BizHawk.Client.EmuHawk/MainForm.Designer.cs b/BizHawk.Client.EmuHawk/MainForm.Designer.cs index da08390abe..dd13dde9ed 100644 --- a/BizHawk.Client.EmuHawk/MainForm.Designer.cs +++ b/BizHawk.Client.EmuHawk/MainForm.Designer.cs @@ -3390,7 +3390,6 @@ private System.Windows.Forms.ToolStripMenuItem BackupSaveramMenuItem; private System.Windows.Forms.ToolStripStatusLabel RebootStatusBarIcon; private System.Windows.Forms.ToolStripMenuItem TraceLoggerMenuItem; - private System.Windows.Forms.ToolStripMenuItem UseBilinearMenuItem; private System.Windows.Forms.ToolStripMenuItem ShowClippedRegionsMenuItem; private System.Windows.Forms.ToolStripSeparator toolStripSeparator24; private System.Windows.Forms.ToolStripMenuItem HighlightActiveDisplayRegionMenuItem; diff --git a/BizHawk.Client.EmuHawk/PresentationPanel.cs b/BizHawk.Client.EmuHawk/PresentationPanel.cs index 9309b0c19d..c14b1e9790 100644 --- a/BizHawk.Client.EmuHawk/PresentationPanel.cs +++ b/BizHawk.Client.EmuHawk/PresentationPanel.cs @@ -45,8 +45,6 @@ namespace BizHawk.Client.EmuHawk IGL GL; public GraphicsControl GraphicsControl; - private bool Vsync; - public Control Control { get { return GraphicsControl; } } public static implicit operator Control(PresentationPanel self) { return self.GraphicsControl; } diff --git a/BizHawk.Common/Util.cs b/BizHawk.Common/Util.cs index bf28b0ff60..1cbccb0f83 100644 --- a/BizHawk.Common/Util.cs +++ b/BizHawk.Common/Util.cs @@ -385,10 +385,6 @@ namespace BizHawk.Common { decimal size = filesize; - const decimal OneKiloByte = 1024M; - const decimal OneMegaByte = OneKiloByte * 1024M; - decimal OneGigaByte = OneMegaByte * 1024M; - string suffix; if (size > 1024 * 1024 * 1024) { @@ -407,7 +403,7 @@ namespace BizHawk.Common } else { - suffix = " B"; + suffix = "B"; } const string precision = "2";