Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/gfxfont/src/font.c

    r5c27e77 rfe40b67  
    11/*
    2  * Copyright (c) 2022 Jiri Svoboda
     2 * Copyright (c) 2020 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    546546        metrics->descent = uint16_t_le2host(tmetrics.descent);
    547547        metrics->leading = uint16_t_le2host(tmetrics.leading);
    548         metrics->underline_y0 = uint16_t_le2host(tmetrics.underline_y0);
    549         metrics->underline_y1 = uint16_t_le2host(tmetrics.underline_y1);
    550548        return EOK;
    551549}
     
    567565        tmetrics.descent = host2uint16_t_le(metrics->descent);
    568566        tmetrics.leading = host2uint16_t_le(metrics->leading);
    569         tmetrics.underline_y0 = host2uint16_t_le(metrics->underline_y0);
    570         tmetrics.underline_y1 = host2uint16_t_le(metrics->underline_y1);
    571567
    572568        rc = riff_wchunk_start(riffw, CKID_fmtr, &mtrck);
Note: See TracChangeset for help on using the changeset viewer.