Browse Source

pixelwriter: fix undefined behaviour

pull/11/head
nillerusr 4 years ago
parent
commit
2d11c8bbf5
  1. 2
      public/pixelwriter.h

2
public/pixelwriter.h

@ -507,7 +507,7 @@ FORCEINLINE_PIXEL void CPixelWriter::WritePixelNoAdvance( int r, int g, int b, i
{ {
if ( IsPC() || !IsX360() ) if ( IsPC() || !IsX360() )
{ {
((unsigned short *)m_pBits)[0] = (unsigned short)((val & 0xffff)); ((unsigned char *)m_pBits)[0] = (unsigned char)((val & 0xffff));
m_pBits[2] = (unsigned char)((val >> 16) & 0xff); m_pBits[2] = (unsigned char)((val >> 16) & 0xff);
} }
else else

Loading…
Cancel
Save