Previous | 199869 Revisions | Next |
r23313 Friday 31st May, 2013 at 10:27:36 UTC by Miodrag Milanović |
---|
compile fix (nw) |
[src/mess/video] | gba.c |
r23312 | r23313 | |
---|---|---|
1835 | 1835 | else |
1836 | 1836 | submode = GBA_SUBMODE2; |
1837 | 1837 | |
1838 | if (m_DISPCNT & 7 == 3) | |
1838 | if ((m_DISPCNT & 7) == 3) | |
1839 | 1839 | depth = 16; |
1840 | else if (m_DISPCNT & 7 == 4) | |
1840 | else if ((m_DISPCNT & 7) == 4) | |
1841 | 1841 | depth = 8; |
1842 | else if (m_DISPCNT & 7 == 5) | |
1842 | else if ((m_DISPCNT & 7) == 5) | |
1843 | 1843 | depth = 4; |
1844 | 1844 | |
1845 | 1845 | //printf("mode = %d, %d\n", m_DISPCNT & 7, submode); |
Previous | 199869 Revisions | Next |