mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-07-10 17:53:23 +00:00
...
This commit is contained in:
parent
1ccf18092e
commit
903d2a5335
1 changed files with 1 additions and 1 deletions
|
|
@ -279,7 +279,7 @@ read_STAT_font_table(const uint8_t *table, size_t table_len, PyObject *name_look
|
|||
}
|
||||
RAII_PyObject(values, PyTuple_New(axis_index));
|
||||
if (!values) return false;
|
||||
for (uint16_t n = 0; n < axis_index; n++) {
|
||||
for (Py_ssize_t n = 0; n < PyTuple_GET_SIZE(values); n++) {
|
||||
uint16_t actual_axis_index = next;
|
||||
double value = load_fixed((uint32_t*)p);
|
||||
p += 2;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue