- Express various sizes in bytes, rather than Kbytes, in the video

mode and adapter information structures.
This commit is contained in:
Kazutaka YOKOTA 1998-10-01 11:40:22 +00:00
parent def802441f
commit ad7b2eec31
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=39859

View File

@ -28,7 +28,7 @@
#ifndef lint
static const char rcsid[] =
"$Id: vidcontrol.c,v 1.22 1998/09/23 10:00:15 yokota Exp $";
"$Id: vidcontrol.c,v 1.23 1998/09/24 01:36:36 gpalmer Exp $";
#endif /* not lint */
#include <ctype.h>
@ -482,10 +482,10 @@ show_mode_info(void)
info.vi_cwidth, info.vi_cheight);
printf(" %-5s", buf);
printf(" 0x%05x %2dk %2dk",
info.vi_window, info.vi_window_size,
info.vi_window_gran);
info.vi_window, info.vi_window_size/1024,
info.vi_window_gran/1024);
printf(" 0x%08x %2dk\n",
info.vi_buffer, info.vi_buffer_size);
info.vi_buffer, info.vi_buffer_size/1024);
}
}