Skip to content
Permalink
Browse files
Merge pull request #467 from 86Box/release/2.0x
Release/2.0x
  • Loading branch information
OBattler committed Nov 20, 2019
2 parents 9ed4bf1 + 5619250 commit 245af88d2b75741a9eb8649c206578a6b5af9939
@@ -8,7 +8,7 @@
*
* Main include file for the application.
*
* Version: @(#)86box.h 1.0.34 2019/11/01
* Version: @(#)86box.h 1.0.35 2019/11/19
*
* Authors: Miran Grca, <mgrca8@gmail.com>
*f Fred N. van Kempen, <decwiz@yahoo.com>
@@ -30,8 +30,8 @@
#define EMU_NAME "86Box"
#define EMU_NAME_W L"86Box"
#ifdef RELEASE_BUILD
#define EMU_VERSION "2.06"
#define EMU_VERSION_W L"2.06"
#define EMU_VERSION "2.07"
#define EMU_VERSION_W L"2.07"
#else
#define EMU_VERSION "2.10"
#define EMU_VERSION_W L"2.10"
@@ -8,7 +8,7 @@
*
* Configuration file handler.
*
* Version: @(#)config.c 1.0.63 2019/10/21
* Version: @(#)config.c 1.0.64 2019/11/19
*
* Authors: Sarah Walker,
* Miran Grca, <mgrca8@gmail.com>
@@ -837,13 +837,18 @@ load_hard_disks(void)
max_tracks = 1023;
break;

case HDD_BUS_ESDI:
case HDD_BUS_XTA:
max_spt = 63;
max_hpc = 16;
max_tracks = 1023;
break;

case HDD_BUS_ESDI:
max_spt = 99;
max_hpc = 16;
max_tracks = 266305;
break;

case HDD_BUS_IDE:
max_spt = 63;
max_hpc = 16;

0 comments on commit 245af88

Please sign in to comment.