Initialize all font-dependent chat box sizes. */
| 99 | |
| 100 | /** Initialize all font-dependent chat box sizes. */ |
| 101 | void NetworkReInitChatBoxSize() |
| 102 | { |
| 103 | _chatmsg_box.y = 3 * GetCharacterHeight(FS_NORMAL); |
| 104 | _chatmsg_box.height = MAX_CHAT_MESSAGES * (GetCharacterHeight(FS_NORMAL) + ScaleGUITrad(NETWORK_CHAT_LINE_SPACING)) + ScaleGUITrad(4); |
| 105 | } |
| 106 | |
| 107 | /** Initialize all buffers of the chat visualisation. */ |
| 108 | void NetworkInitChatMessage() |
no test coverage detected