Changes between Initial Version and Version 1 of Ticket #1851, comment 4


Ignore:
Timestamp:
Jun 10, 2013, 6:38:10 PM (11 years ago)
Author:
Markus

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1851, comment 4

    initial v1  
    11One warning is still unfixed:
    22
    3 In [[source:ps/trunk/source/renderer/PatchRData.cpp#L236 | PatchRData.cpp:236]] the m_TileMask is a u16. It get some bits set and then its assigned to a u8, causing a narrowing warning.
     3In [[source:ps/trunk/source/renderer/PatchRData.cpp#L236 | PatchRData.cpp:236]] the m_TileMask is a u16. It gets some bits set and then its assigned to a u8, causing a narrowing warning.
    44
    5 The u16 has bits set that will be lost in a u8. So I dont know if this is aktually okay or if we need to expand the u8 to 16 bits.
     5The u16 has bits set that will be lost in a u8. So I dont know if this is actually okay or if we need to expand the u8 to 16 bits.