Another major change round. VNC moved to top level. More cleanups of global data, all VM processing now handled in pc.c (out of the platforms, yay!), and some video cleanups. This build MAY have issues with window sizes, resizing, and fullscreen will not work until the next build- sorry.
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
*
|
||||
* Emulation of the Tandy Model 1000 video.
|
||||
*
|
||||
* Version: @(#)vid_tandy.c 1.0.1 2017/10/16
|
||||
* Version: @(#)vid_tandy.c 1.0.2 2017/10/18
|
||||
*
|
||||
* Authors: Sarah Walker, <http://pcem-emulator.co.uk/>
|
||||
* Miran Grca, <mgrca8@gmail.com>
|
||||
@@ -546,7 +546,7 @@ void tandy_poll(void *p)
|
||||
ysize = tandy->lastline - tandy->firstline;
|
||||
if (xsize < 64) xsize = 656;
|
||||
if (ysize < 32) ysize = 200;
|
||||
updatewindowsize(xsize, (ysize << 1) + 16);
|
||||
set_screen_size(xsize, (ysize << 1) + 16);
|
||||
}
|
||||
|
||||
if (tandy->composite)
|
||||
|
||||
Reference in New Issue
Block a user