increasing LINES and COLS [was Re: suggestion]

Roland Illig roland.illig at gmx.de
Sun Nov 7 12:46:28 UTC 2004


Leonard den Ottolander wrote:
> -    if ((COLS < 10) || (LINES < 5) || (COLS > 255) || (LINES > 255)) {
> +    if ((COLS < 10) || (LINES < 5) ||
> +    (SLang_Version < 10407 && (COLS > 255 || LINES > 255)) ||
> +    (SLang_Version >= 10407 && (COLS > 512 || LINES > 512))) {
> +

Committed.

Roland



More information about the mc-devel mailing list