Flush all changes from the last two weeks. Still several issues not done.

Cleaned up parallel ports.
Reworked serial ports as devices (still need to clean the chipsets..)
Fixed some issues in Makefile.local.
Prepared for the XTA driver.
Reworked the mouse code AGAIN, fixes crashes on some serial mice and the PS/2 mouse.c
Cleaned up win_devconf.c.
This commit is contained in:
waltje
2018-04-20 04:16:43 -04:00
parent 02a5ac7ac0
commit e61e7ea47e
68 changed files with 1691 additions and 1403 deletions

View File

@@ -11,7 +11,7 @@
* NOTES: This code should be re-merged into a single init() with a
* 'fullscreen' argument, indicating FS mode is requested.
*
* Version: @(#)win_ddraw.cpp 1.0.3 2018/03/17
* Version: @(#)win_ddraw.cpp 1.0.4 2018/04/14
*
* Authors: Fred N. van Kempen, <decwiz@yahoo.com>
* Miran Grca, <mgrca8@gmail.com>
@@ -349,9 +349,9 @@ ddraw_fs_size(RECT w_rect, RECT *r_dest, int w, int h)
int ratio_w, ratio_h;
double hsr, gsr, ra, d;
pclog("video_fullscreen_scale = %i\n", video_fullscreen_scale);
pclog("vid_fullscreen_scale = %i\n", vid_fullscreen_scale);
switch (video_fullscreen_scale) {
switch (vid_fullscreen_scale) {
case FULLSCR_SCALE_FULL:
ddraw_fs_size_default(w_rect, r_dest);
break;