Oops, I guess people want HQ3/4X in windowed mode too

This commit is contained in:
pagefault
2005-02-10 00:52:26 +00:00
parent 091b105249
commit ba70fe2bf0

View File

@@ -160,7 +160,20 @@ void sw_drawwin()
NumBytesPerLine = pitch; NumBytesPerLine = pitch;
WinVidMemStart = (void*)SurfBufD; WinVidMemStart = (void*)SurfBufD;
if (hqFilter) { if (hqFilter) {
hq2x_16b(); switch (hqFilter)
{
case 1:
hq2x_16b();
break;
case 2:
//hq3x_16b();
break;
case 3:
//hq4x_16b();
break;
default:
break;
}
} else { } else {
copy640x480x16bwin(); copy640x480x16bwin();
} }