| 7515 | } |
| 7516 | |
| 7517 | int Item_TextScroll_MaxScroll ( itemDef_t *item ) |
| 7518 | { |
| 7519 | textScrollDef_t *scrollPtr = (textScrollDef_t*)item->typeData; |
| 7520 | |
| 7521 | int count = scrollPtr->iLineCount; |
| 7522 | int max = count - (int)(item->window.rect.h / scrollPtr->lineHeight) + 1; |
| 7523 | |
| 7524 | if (max < 0) |
| 7525 | { |
| 7526 | return 0; |
| 7527 | } |
| 7528 | |
| 7529 | return max; |
| 7530 | } |
| 7531 | |
| 7532 | int Item_TextScroll_ThumbPosition ( itemDef_t *item ) |
| 7533 | { |
no outgoing calls
no test coverage detected