Skip to content

Commit

Permalink
Version 1.7.1
Browse files Browse the repository at this point in the history
Reapplied the workaround for timeout problems, as it still happens
  • Loading branch information
daviunic committed Aug 18, 2020
1 parent a5fb794 commit e578a9c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions 86BoxManager/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:

[assembly: AssemblyVersion("1.7.0.0")]
[assembly: AssemblyFileVersion("1.7.0.0")]
[assembly: AssemblyVersion("1.7.1.0")]
[assembly: AssemblyFileVersion("1.7.1.0")]
2 changes: 1 addition & 1 deletion 86BoxManager/frmMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@ private void VMStart()

//initSuccess is ignored for now because WaitForInputIdle() likes to return false more often now that
//86Box is compiled with GCC 9.3.0...
if (!p.MainWindowHandle.Equals(IntPtr.Zero) && initSuccess)
if (!p.MainWindowHandle.Equals(IntPtr.Zero) /*&& initSuccess*/)
{
vm.hWnd = p.MainWindowHandle; //Get the window handle of the newly created process
vm.Status = VM.STATUS_RUNNING;
Expand Down

0 comments on commit e578a9c

Please sign in to comment.