diff options
author | Tim van der Molen <tim@cvs.openbsd.org> | 2020-07-23 09:17:04 +0000 |
---|---|---|
committer | Tim van der Molen <tim@cvs.openbsd.org> | 2020-07-23 09:17:04 +0000 |
commit | c3bdbc2f7be737c3d8dc3cb9a01227b96680ba00 (patch) | |
tree | fed60acb16f2a57c5914c37e19f7936813055fb3 /sys/dev/rasops | |
parent | 1a9f2c968faa1c891e2f7961a080ffa70db4f706 (diff) |
Fix comments to match code; OK fcambus@
Diffstat (limited to 'sys/dev/rasops')
-rw-r--r-- | sys/dev/rasops/rasops.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/rasops/rasops.c b/sys/dev/rasops/rasops.c index 56ec8106d3c..70fb41758c0 100644 --- a/sys/dev/rasops/rasops.c +++ b/sys/dev/rasops/rasops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rasops.c,v 1.65 2020/07/20 12:40:45 fcambus Exp $ */ +/* $OpenBSD: rasops.c,v 1.66 2020/07/23 09:17:03 tim Exp $ */ /* $NetBSD: rasops.c,v 1.35 2001/02/02 06:01:01 marcus Exp $ */ /*- @@ -216,11 +216,11 @@ rasops_init(struct rasops_info *ri, int wantrows, int wantcols) wsfont_init(); if (ri->ri_width >= 120 * 32) - /* Screen width larger than 3840px, 32px wide font */ + /* Screen width of at least 3840px, 32px wide font */ cookie = wsfont_find(NULL, 32, 0, 0); if (cookie <= 0 && ri->ri_width >= 120 * 16) - /* Screen width larger than 1920px, 16px wide font */ + /* Screen width of at least 1920px, 16px wide font */ cookie = wsfont_find(NULL, 16, 0, 0); if (cookie <= 0 && ri->ri_width > 80 * 12) |