Fixed some bugs and warnings.

Moved the SIO files to a new sio/ folder.
Added the 'version.h'stuff, added Makefile rule to generate the Manifest file for Windows.
Re-worked the About dialog - it now includes more info.
This commit is contained in:
waltje
2018-03-08 01:21:26 -05:00
parent 2fac557f69
commit 412d1fdf48
63 changed files with 466 additions and 271 deletions

View File

@@ -17,7 +17,7 @@
* or to use a generic handler, and then pass it a pointer
* to a command table. For now, we don't.
*
* Version: @(#)rom_load.c 1.0.2 2018/03/01
* Version: @(#)rom_load.c 1.0.3 2018/03/07
*
* Author: Fred N. van Kempen, <decwiz@yahoo.com>
*
@@ -314,8 +314,8 @@ rom_load_bios(wchar_t *fn, int test_only)
int c, i;
/* Generate the full script pathname. */
wcscpy(script, ROMS_PATH); plat_path_slash(script);
wcscat(script, fn); plat_path_slash(script);
wcscpy(script, ROMS_PATH); plat_append_slash(script);
wcscat(script, fn); plat_append_slash(script);
wcscpy(path, script);
wcscat(script, BIOS_FILE);