From f8bae6c14df76c506af4474cbf29402d2bfa8209 Mon Sep 17 00:00:00 2001 From: John Tsiombikas Date: Tue, 10 Dec 2019 13:12:16 +0200 Subject: [PATCH] removed "trying to match" debug prints --- src/dos/gfx.c | 2 -- 1 file changed, 2 deletions(-) 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]; -- 1.7.10.4