Skip to content

Commit

Permalink
Merge pull request AppleWin#279 from AppleWin/1.25.0.4
Browse files Browse the repository at this point in the history
Fix for Applewin exiting when using -d1 arg (AppleWin#276) and set version to 1.25.0.4
  • Loading branch information
tomcw committed Apr 23, 2015
2 parents 565fd79 + 9191efe commit 60db3d6
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
6 changes: 6 additions & 0 deletions bin/History.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ https://github.com/AppleWin/AppleWin/issues/new
Tom Charlesworth


1.25.0.4 - 23 Apr 2015
----------------------
Fixes:
. [Bug #276] -d1 command line argument caused AppleWin to quickly exit.


1.25.0.3 - 8 Sep 2014
---------------------
Note: This is the last planned version to support Win98/ME.
Expand Down
10 changes: 5 additions & 5 deletions resource/Applewin.rc
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,8 @@ DISK_ICON ICON "DISK.ICO"
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,25,0,3
PRODUCTVERSION 1,25,0,3
FILEVERSION 1,25,0,4
PRODUCTVERSION 1,25,0,4
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -269,12 +269,12 @@ BEGIN
VALUE "Comments", "https://github.com/AppleWin"
VALUE "CompanyName", "AppleWin"
VALUE "FileDescription", "Apple //e Emulator for Windows"
VALUE "FileVersion", "1, 25, 0, 3"
VALUE "FileVersion", "1, 25, 0, 4"
VALUE "InternalName", "APPLEWIN"
VALUE "LegalCopyright", " 1994-2014 Michael O'Brien, Oliver Schmidt, Tom Charlesworth, Michael Pohoreski, Nick Westgate, Linards Ticmanis"
VALUE "LegalCopyright", " 1994-2015 Michael O'Brien, Oliver Schmidt, Tom Charlesworth, Michael Pohoreski, Nick Westgate, Linards Ticmanis"
VALUE "OriginalFilename", "APPLEWIN.EXE"
VALUE "ProductName", "Apple //e Emulator"
VALUE "ProductVersion", "1, 25, 0, 3"
VALUE "ProductVersion", "1, 25, 0, 4"
END
END
BLOCK "VarFileInfo"
Expand Down
3 changes: 3 additions & 0 deletions source/Frame.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -617,6 +617,9 @@ void FrameDrawDiskLEDS( HDC passdc )
//===========================================================================
void FrameDrawDiskStatus( HDC passdc )
{
if (mem == NULL)
return;

// We use the actual drive since probing from memory doesn't tell us anything we don't already know.
// DOS3.3 ProDOS
// Drive $B7EA $BE3D
Expand Down

0 comments on commit 60db3d6

Please sign in to comment.