Added preliminary emulation of the 'Xebec' XT Fixed Disk Adapter.
This commit is contained in:
parent
070a93803e
commit
f44aed9332
12 changed files with 758 additions and 9 deletions
12
src/win.c
12
src/win.c
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue