mirror of
https://github.com/86Box/86Box.git
synced 2026-02-23 18:08:20 -07:00
uncomment s2sb
This commit is contained in:
@@ -59,7 +59,7 @@ void nv3_class_010_method(uint32_t param, uint32_t method_id, nv3_ramin_context_
|
||||
&& nv3->pgraph.blit.size.w == 0)
|
||||
return;
|
||||
|
||||
//nv3_render_blit_screen2screen(grobj);
|
||||
nv3_render_blit_screen2screen(grobj);
|
||||
|
||||
break;
|
||||
default:
|
||||
|
||||
@@ -534,7 +534,6 @@ void nv3_recalc_timings(svga_t* svga)
|
||||
svga->bpp = 8;
|
||||
svga->lowres = 0;
|
||||
svga->map8 = svga->pallook;
|
||||
//svga->render = nv3_render_8bpp;
|
||||
break;
|
||||
case NV3_CRTC_REGISTER_PIXELMODE_16BPP:
|
||||
/* This is some sketchy shit that is an attempt at an educated guess
|
||||
@@ -545,19 +544,16 @@ void nv3_recalc_timings(svga_t* svga)
|
||||
else
|
||||
svga->rowoffset += (svga->crtc[NV3_CRTC_REGISTER_RPC0] & 0xE0) << 3;
|
||||
|
||||
|
||||
/* sometimes it really renders in 15bpp, so you need to do this */
|
||||
if ((nv3->pramdac.general_control >> NV3_PRAMDAC_GENERAL_CONTROL_565_MODE) & 0x01)
|
||||
{
|
||||
svga->bpp = 16;
|
||||
svga->lowres = 0;
|
||||
//svga->render = nv3_render_16bpp;
|
||||
}
|
||||
else
|
||||
{
|
||||
svga->bpp = 15;
|
||||
svga->lowres = 0;
|
||||
//svga->render = nv3_render_15bpp;
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user