OneLoneCoder / olcNES

NES Emulator, and Tutorial Video Code
1.35k stars 225 forks source link

NTSC | PAL #27

Open OneMeanDragon opened 4 years ago

OneMeanDragon commented 4 years ago
                If (GameFileHeader.tv_system1 And &H1) = &H1 Then 'check if bit 0 is set as 1
                    m_ntsc = True ' 1 = NTSC
                Else
                    m_ntsc = False ' 0 = PAL
                End If
                if ((GameFileHeader.tv_system1 & 0x1) == 0x1) { //check if bit 0 is set as 1
                    m_ntsc = true; // 1 = NTSC
                } else {
                    m_ntsc = false; // 0 = PAL
                }

since i didnt come across it in your code. edit: or was that ines2.0 only lol, my eyes a burning.