Added preliminary emulation of the 'Xebec' XT Fixed Disk Adapter.

This commit is contained in:
SarahW 2017-03-18 17:14:39 +00:00
commit f44aed9332
12 changed files with 758 additions and 9 deletions

View file

@ -104,6 +104,18 @@ static int win_doresize = 0;
static int leave_fullscreen_flag = 0;
void warning(const char *format, ...)
{
char buf[1024];
va_list ap;
va_start(ap, format);
vsprintf(buf, format, ap);
va_end(ap);
MessageBox(ghwnd, buf, "PCem", MB_OK);
}
void updatewindowsize(int x, int y)
{
RECT r;