mirror of
https://github.com/celisej567/source-engine.git
synced 2026-01-05 22:09:59 +03:00
pixelwriter: fix undefined behaviour
This commit is contained in:
@@ -507,7 +507,7 @@ FORCEINLINE_PIXEL void CPixelWriter::WritePixelNoAdvance( int r, int g, int b, i
|
||||
{
|
||||
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);
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user