I compiled a project, put it onto my R4 Card but it does not work. The backgrounds are shown but the color code does not get actualized after touching the screen.
Code: Select all
int main(){
PA_Init();
PA_LoadDefaultText(1, 0);
PA_LoadBackground(0, 1, &bgzz);
PA_LoadBackground(0, 0, &bgzzcol);
while(true){
PA_OutputText(1, 2, 5, "Color: %d ", PA_EasyBgGetPixelCol(0, 1, Stylus.X, Stylus.Y));
}
}