Hi Bruce, > You Can just use > y<<16+x // or y<<16|x or y*256*26+x etc.
Thanks for that. Didn't know << or |. Just one remark - had some trouble with priority-levels of operators in expressions. ==> + is higher than << which is higher than | so y<<16+x didn't work - had to change to (y<<16)+x whereas y<<16|x works fine Thanks again Best regards
