fixed error I did when applying Martin Hurton's drawtext patch
6975a7e3
1 file(s) · +1 −1
| 581 | 581 | y = dc.y + (dc.h / 2) - (h / 2) + dc.font.ascent; |
|
| 582 | 582 | x = dc.x + (h / 2); |
|
| 583 | 583 | /* shorten text if necessary */ |
|
| 584 | - | for(len = MIN(olen, sizeof buf); len && textnw(buf, len) > dc.w - h; len--); |
|
| 584 | + | for(len = MIN(olen, sizeof buf); len && textnw(text, len) > dc.w - h; len--); |
|
| 585 | 585 | if(!len) |
|
| 586 | 586 | return; |
|
| 587 | 587 | memcpy(buf, text, len); |