Procházet zdrojové kódy

Disabling rainbow by default

ICPad
Jacob Alexander před 8 roky
rodič
revize
077d781cf1
1 změnil soubory, kde provedl 5 přidání a 1 odebrání
  1. 5
    1
      Macro/PixelMap/pixel.c

+ 5
- 1
Macro/PixelMap/pixel.c Zobrazit soubor

rainbow_pos++; rainbow_pos++;
Pixel_testMode = PixelTest_Off; Pixel_testMode = PixelTest_Off;


if ( rainbow_pos >= sizeof( rainbow_frames ) )
if ( rainbow_pos >= sizeof( rainbow_frames ) / 2 )
{
rainbow_pos = 0; rainbow_pos = 0;
goto pixel_process_done; goto pixel_process_done;
}


default: default:
break; break;
// Start from the top of the Animation Stack // Start from the top of the Animation Stack
// TODO // TODO


/*
// XXX Temp - Play rainbow // XXX Temp - Play rainbow
Pixel_pixelProcess( rainbow_frames[rainbow_pos], rainbow_framesizes[rainbow_pos] ); Pixel_pixelProcess( rainbow_frames[rainbow_pos], rainbow_framesizes[rainbow_pos] );
rainbow_pos++; rainbow_pos++;
{ {
rainbow_pos = 0; rainbow_pos = 0;
} }
*/




pixel_process_done: pixel_process_done: