Subversion Repositories Kolibri OS

Rev

Rev 8557 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8557 Rev 9097
Line 739... Line 739...
739
		{
739
		{
740
			lasttime = curtime;
740
			lasttime = curtime;
Line 741... Line 741...
741
 
741
 
742
			cursorvis ^= true;
742
			cursorvis ^= true;
743
		}
743
		}
744
		else SDL_Delay(5);
744
		else uSDL_Delay(5);
745
		if (cursorvis)
745
		if (cursorvis)
Line 746... Line 746...
746
			USL_XORICursor(x,y,s,cursor);
746
			USL_XORICursor(x,y,s,cursor);
747
 
747
 
Line 770... Line 770...
770
//
770
//
771
///////////////////////////////////////////////////////////////////////////
771
///////////////////////////////////////////////////////////////////////////
772
void US_InitRndT(int randomize)
772
void US_InitRndT(int randomize)
773
{
773
{
774
    if(randomize)
774
    if(randomize)
775
        rndindex = (SDL_GetTicks() >> 4) & 0xff;
775
        rndindex = ( uSDL_GetTicks() >> 4) & 0xff;
776
    else
776
    else
777
        rndindex = 0;
777
        rndindex = 0;
778
}
778
}
Line 779... Line 779...
779
 
779