From: John Tsiombikas Date: Tue, 10 Dec 2019 11:12:16 +0000 (+0200) Subject: removed "trying to match" debug prints X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=dosdemo;a=commitdiff_plain;h=f8bae6c14df76c506af4474cbf29402d2bfa8209 removed "trying to match" debug prints --- diff --git a/src/dos/gfx.c b/src/dos/gfx.c index d0128ee..570eaba 100644 --- a/src/dos/gfx.c +++ b/src/dos/gfx.c @@ -73,8 +73,6 @@ void *set_video_mode(int xsz, int ysz, int bpp) if(vbe_mode_info(vbe.modes[i], &minf) == -1) { continue; } - printf("trying to match mode: %d (%dx%d %dbpp)\n", vbe.modes[i], - minf.xres, minf.yres, minf.bpp); if(minf.xres != xsz || minf.yres != ysz) continue; if(minf.bpp == bpp) { mode = vbe.modes[i];