The emulator is now almost completely Unicode - this means all paths and file names used can now use non-Latin characters;
Fixed several NVR- and ROM-related bugs in the process of doing the above.
This commit is contained in:
@@ -6,6 +6,7 @@
|
||||
#include "device.h"
|
||||
#include "io.h"
|
||||
#include "mem.h"
|
||||
#include "rom.h"
|
||||
#include "tandy_rom.h"
|
||||
|
||||
static uint8_t *tandy_rom;
|
||||
@@ -52,8 +53,8 @@ void *tandy_rom_init()
|
||||
|
||||
tandy_rom = malloc(0x80000);
|
||||
|
||||
f = romfopen("roms/tandy1000sl2/8079047.hu1" ,"rb");
|
||||
ff = romfopen("roms/tandy1000sl2/8079048.hu2","rb");
|
||||
f = romfopen(L"roms/tandy1000sl2/8079047.hu1", L"rb");
|
||||
ff = romfopen(L"roms/tandy1000sl2/8079048.hu2", L"rb");
|
||||
for (c = 0x0000; c < 0x80000; c += 2)
|
||||
{
|
||||
tandy_rom[c] = getc(f);
|
||||
|
||||
Reference in New Issue
Block a user