Another cleanup. VNC now has fixed blitters, so 8bit cards (vga,mda,herc et al) work. More cleanups with the %ls stuff, cleanup of threads modules, and MOVED THE MAKEFILE to win/.

This commit is contained in:
waltje
2017-10-14 20:04:21 -04:00
parent 25b4014ce0
commit c1abfe2362
18 changed files with 169 additions and 167 deletions

View File

@@ -13,7 +13,7 @@
* - c386sx16 BIOS fails checksum
* - the loadfont() calls should be done elsewhere
*
* Version: @(#)rom.c 1.0.10 2017/10/12
* Version: @(#)rom.c 1.0.11 2017/10/14
*
* Authors: Sarah Walker, <http://pcem-emulator.co.uk/>
* Miran Grca, <mgrca8@gmail.com>
@@ -135,7 +135,7 @@ rom_load_linear(wchar_t *fn, uint32_t addr, int sz, int off, uint8_t *ptr)
FILE *f = rom_fopen(fn, L"rb");
if (f == NULL) {
pclog("ROM: image '%S' not found\n", fn);
pclog("ROM: image '%ls' not found\n", fn);
return(0);
}
@@ -166,9 +166,9 @@ rom_load_interleaved(wchar_t *fnl, wchar_t *fnh, uint32_t addr, int sz, int off,
int c;
if (fl == NULL || fh == NULL) {
if (fl == NULL) pclog("ROM: image '%S' not found\n", fnl);
if (fl == NULL) pclog("ROM: image '%ls' not found\n", fnl);
else (void)fclose(fl);
if (fh == NULL) pclog("ROM: image '%S' not found\n", fnh);
if (fh == NULL) pclog("ROM: image '%ls' not found\n", fnh);
else (void)fclose(fh);
return(0);