diff --git a/Build/SlimDX.dll b/Build/SlimDX.dll index ca05cbd7..c02903f6 100755 Binary files a/Build/SlimDX.dll and b/Build/SlimDX.dll differ diff --git a/Build/Updater.ini b/Build/Updater.ini index 688eb2ea..fe4d499e 100755 --- a/Build/Updater.ini +++ b/Build/Updater.ini @@ -1,4 +1,4 @@ URL http://devbuilds.drdteam.org/gzdbbf/ FileName Builder.exe -UpdateName GZDoom_Builder_Bugfix-r[REVNUM]-x64.7z -UpdaterName GZDB_Updater-x64.7z \ No newline at end of file +UpdateName GZDoom_Builder_Bugfix-r[REVNUM].7z +UpdaterName GZDB_Updater-x86.7z \ No newline at end of file diff --git a/Source/Core/GZBuilder/md3/ModelReader.cs b/Source/Core/GZBuilder/md3/ModelReader.cs index ec2a7aba..7e371a83 100755 --- a/Source/Core/GZBuilder/md3/ModelReader.cs +++ b/Source/Core/GZBuilder/md3/ModelReader.cs @@ -1520,7 +1520,7 @@ namespace CodeImp.DoomBuilder.GZBuilder.MD3 v.x = rx; v.y = ry; } - catch (FormatException e) + catch (FormatException) { message = "field is not a float"; return false; @@ -1549,7 +1549,7 @@ namespace CodeImp.DoomBuilder.GZBuilder.MD3 else t.y = 0.0f; } - catch (FormatException e) + catch (FormatException) { message = "field is not a float"; return false; @@ -1575,7 +1575,7 @@ namespace CodeImp.DoomBuilder.GZBuilder.MD3 normal.y = float.Parse(fields[1], CultureInfo.InvariantCulture); normal.z = float.Parse(fields[2], CultureInfo.InvariantCulture); } - catch (FormatException e) + catch (FormatException) { message = "field is not a float"; return false; @@ -1620,7 +1620,7 @@ namespace CodeImp.DoomBuilder.GZBuilder.MD3 normals.Add(-1); } } - catch(FormatException e) + catch(FormatException) { message = "field is not an integer"; return false; diff --git a/Source/Plugins/VisplaneExplorer/Resources/vpo.dll b/Source/Plugins/VisplaneExplorer/Resources/vpo.dll index 9984218c..85ec8cc8 100755 Binary files a/Source/Plugins/VisplaneExplorer/Resources/vpo.dll and b/Source/Plugins/VisplaneExplorer/Resources/vpo.dll differ