Changes between Initial Version and Version 1 of Ticket #126, comment 17
- Timestamp:
- Apr 10, 2017, 10:12:01 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #126, comment 17
initial v1 3 3 Well, 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. 4 4 5 We can get rid out superfluous cast, replacing `(char *)cp` by just `cp` in call to `TextOutA`. 5 We can get rid out superfluous cast, replacing `(char *)cp` by just `cp` in call to `TextOutA`. Not sure if it's worth of... 6 6 7 7 There are no performance implications.