projects
/
dosdemo
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d73939f
)
removed "trying to match" debug prints
author
John Tsiombikas
<nuclear@member.fsf.org>
Tue, 10 Dec 2019 11:12:16 +0000
(13:12 +0200)
committer
John Tsiombikas
<nuclear@member.fsf.org>
Tue, 10 Dec 2019 11:12:16 +0000
(13:12 +0200)
src/dos/gfx.c
patch
|
blob
|
history
diff --git
a/src/dos/gfx.c
b/src/dos/gfx.c
index
d0128ee
..
570eaba
100644
(file)
--- 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];