mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 15:48:09 -05:00
17 lines
509 B
C++
17 lines
509 B
C++
#include "mxvideoparamflags.h"
|
|
|
|
// OFFSET: LEGO1 0x100bec40
|
|
MxVideoParamFlags::MxVideoParamFlags()
|
|
{
|
|
// TODO: convert to EnableXXX function calls
|
|
unsigned char bVar1 = this->m_flags1;
|
|
this->m_flags1 = bVar1 & 0xfe;
|
|
this->m_flags1 = bVar1 & 0xfc;
|
|
this->m_flags1 = bVar1 & 0xf8;
|
|
this->m_flags1 = bVar1 & 0xf0;
|
|
this->m_flags1 = bVar1 & 0xe0;
|
|
this->m_flags2 = this->m_flags2 | 2;
|
|
this->m_flags1 = bVar1 & 0xc0;
|
|
this->m_flags1 = bVar1 & 0xc0 | 0x40;
|
|
this->m_flags1 = 0xc0;
|
|
}
|