frang cant spell vertical

This commit is contained in:
cxgeorge 2001-12-12 02:21:57 +00:00
parent 9d721e6dd5
commit b7857c9a34
2 changed files with 4 additions and 4 deletions

View File

@ -366,13 +366,13 @@ ChanConfig::ChanConfig(GraphicsPipe* pipe, std::string cfg, Node *render,
sizeX = W.getSizeX();
sizeY = W.getSizeY();
} else {
// verticle size is defined, compute horizontal keeping the aspect from
// vertical size is defined, compute horizontal keeping the aspect from
// the default
sizeX = (W.getSizeX() * sizeY) / W.getSizeY();
}
}
if (sizeY < 0) {
// horizontal size is defined, compute verticle keeping the aspect from the
// horizontal size is defined, compute vertical keeping the aspect from the
// default
sizeY = (W.getSizeY() * sizeX) / W.getSizeX();
}

View File

@ -27,7 +27,7 @@
;;; * There may be an arbitrary number of region specs, though regions are
;;; not allowed to overlap. If they do, this will be detected and an
;;; error will be thrown.
;;; * 'm' is horizontal, 'n' is verticle
;;; * 'm' is horizontal, 'n' is vertical
;;;
;;; The format for a region spec is:
;;; m x n lower
@ -37,7 +37,7 @@
;;; * 'Lower left' is the cell index of the lower left corner of the region.
;;; * Cell indexes are 0-based, and start in the lower left corner of the
;;; parent region/window.
;;; * 'm' is horizontal, 'n' is verticle
;;; * 'm' is horizontal, 'n' is vertical
;;;.
;;;*Public