Changes between Initial Version and Version 1 of Ticket #126, comment 17


Ignore:
Timestamp:
Apr 10, 2017, 9:12:01 PM (7 years ago)
Author:
jan vrany

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #126, comment 17

    initial v1  
    33Well, we need to use `w_cp` variable in order have correct offsets in `w_cp += MAX_DISPLAY_BUFFER` (we're working with 2byte characters here so compiler has to know that `w_cp` in pointer (or array of, that's the same) to 2-byte element. So this has to stay.
    44
    5 We can get rid out superfluous cast, replacing `(char *)cp` by just `cp` in call to `TextOutA`.
     5We can get rid out superfluous cast, replacing `(char *)cp` by just `cp` in call to `TextOutA`. Not sure if it's worth of...
    66
    77There are no performance implications.