diff --git a/src/WIN/86Box.rc b/src/WIN/86Box.rc index 73f326984..705da1599 100644 --- a/src/WIN/86Box.rc +++ b/src/WIN/86Box.rc @@ -8,7 +8,7 @@ * * Windows resource script. * - * Version: @(#)86Box.rc 1.0.3 2017/06/16 + * Version: @(#)86Box.rc 1.0.4 2017/06/17 * * Authors: Miran Grca, * Fred N. van Kempen, @@ -186,7 +186,7 @@ FONT 9, "Segoe UI" BEGIN DEFPUSHBUTTON "OK",IDOK,129,94,71,12 ICON 100,IDC_ABOUT_ICON,7,7,20,20 - LTEXT "86Box v2.00 - A fork of PCem\n\nAuthors: Sarah Walker, Miran Grca, waltje, SA1988, MoochMcGee, reenigne, leilei, JohnElliott, greatpsycho, and others.\n\nReleased under the GNU General Public License version 2. See LICENSE for more information.", + LTEXT "86Box v2.00 - A fork of PCem\n\nAuthors: Sarah Walker, Miran Grca, Fred N. van Kempen (waltje), SA1988, MoochMcGee, reenigne, leilei, JohnElliott, greatpsycho, and others.\n\nReleased under the GNU General Public License version 2. See LICENSE for more information.", IDC_ABOUT_ICON,54,7,146,73 CONTROL "",IDC_ABOUT_ICON,"Static",SS_BLACKFRAME | SS_SUNKEN,0, 86,208,1 diff --git a/src/ide.c b/src/ide.c index 4a11ed3a7..1056c7858 100644 --- a/src/ide.c +++ b/src/ide.c @@ -9,7 +9,7 @@ * Implementation of the IDE emulation for hard disks and ATAPI * CD-ROM devices. * - * Version: @(#)ide.c 1.0.2 2017/06/16 + * Version: @(#)ide.c 1.0.3 2017/06/17 * * Authors: Sarah Walker, * Miran Grca, @@ -20,6 +20,7 @@ */ #include #include +#include #include #include "86box.h" diff --git a/src/pc.c b/src/pc.c index 45016bf4a..ef35f166e 100644 --- a/src/pc.c +++ b/src/pc.c @@ -8,7 +8,7 @@ * * Emulation core dispatcher. * - * Version: @(#)pc.c 1.0.4 2017/06/15 + * Version: @(#)pc.c 1.0.5 2017/06/17 * * Authors: Sarah Walker, * Miran Grca, @@ -290,10 +290,10 @@ void initpc(int argc, wchar_t *argv[]) wchar_t *config_file = NULL; int c; get_executable_name(pcempath, 511); - pclog("executable_name = %ws\n", pcempath); + pclog("executable_name = %S\n", pcempath); p=get_filename_w(pcempath); *p=L'\0'; - pclog("path = %ws\n", pcempath); + pclog("path = %S\n", pcempath); #ifdef WALTJE DIR *dir; struct direct *dp; @@ -330,15 +330,15 @@ void initpc(int argc, wchar_t *argv[]) #ifdef WALTJE dir = opendirw(pcempath); if (dir != NULL) { - printf("Directory '%ws':\n", pcempath); + printf("Directory '%S':\n", pcempath); for (;;) { dp = readdir(dir); if (dp == NULL) break; - printf(">> '%ws'\n", dp->d_name); + printf(">> '%S'\n", dp->d_name); } closedir(dir); } else { - printf("Could not open '%ws'..\n", pcempath); + printf("Could not open '%S'..\n", pcempath); } #endif