comparison src/version.c @ 615:7fe13e0f5dce v7.0175

updated for version 7.0175
author vimboss
date Thu, 22 Dec 2005 22:47:02 +0000
parents 25a70b1cd2da
children 19106f131c87
comparison
equal deleted inserted replaced
614:0b1b7560c456 615:7fe13e0f5dce
1080 if (blanklines < 0) 1080 if (blanklines < 0)
1081 blanklines = 0; 1081 blanklines = 0;
1082 1082
1083 /* Show the sponsor and register message one out of four times, the Uganda 1083 /* Show the sponsor and register message one out of four times, the Uganda
1084 * message two out of four times. */ 1084 * message two out of four times. */
1085 sponsor = time(NULL); 1085 sponsor = (int)time(NULL);
1086 sponsor = ((sponsor & 2) == 0) - ((sponsor & 4) == 0); 1086 sponsor = ((sponsor & 2) == 0) - ((sponsor & 4) == 0);
1087 1087
1088 /* start displaying the message lines after half of the blank lines */ 1088 /* start displaying the message lines after half of the blank lines */
1089 row = blanklines / 2; 1089 row = blanklines / 2;
1090 if ((row >= 2 && Columns >= 50) || colon) 1090 if ((row >= 2 && Columns >= 50) || colon)