Merge pull request #34 from Michaelangel007/master

Cleanup DHGR code for readability
This commit is contained in:
Brendan Robert 2017-10-24 10:12:23 -05:00 committed by GitHub
commit f19b0847ad
1 changed files with 8 additions and 8 deletions

View File

@ -310,7 +310,7 @@ public class VideoDHGR extends Video {
useColor[useColOffset + 1] = (b2 & 0x80) != 0;
useColor[useColOffset + 2] = (b3 & 0x80) != 0;
useColor[useColOffset + 3] = (b4 & 0x80) != 0;
int dhgrWord = 0x07f & b1;
int dhgrWord = (0x07f & b1) ;
dhgrWord |= (0x07f & b2) << 7;
dhgrWord |= (0x07f & b3) << 14;
dhgrWord |= (0x07f & b4) << 21;