| 291 | //=========================================================================== |
| 292 | |
| 293 | static void CT_BackSpace () |
| 294 | { |
| 295 | if (ChatQueue.Size()) |
| 296 | { |
| 297 | int endpos = ChatQueue.Size() - 1; |
| 298 | while (endpos > 0 && ChatQueue[endpos] >= 0x80 && ChatQueue[endpos] < 0xc0) endpos--; |
| 299 | ChatQueue.Clamp(endpos); |
| 300 | } |
| 301 | } |
| 302 | |
| 303 | //=========================================================================== |
| 304 | // |
no test coverage detected