uiacceltk/hitchcock/backgroundanim/src/highrestimer.cpp
branchRCL_3
changeset 8 10534483575f
parent 0 15bf7259bb7c
child 21 6ce30188c5bf
equal deleted inserted replaced
7:433cbbb6a04b 8:10534483575f
    37 	TInt wait = aWaitInMilliSecs*1000;
    37 	TInt wait = aWaitInMilliSecs*1000;
    38 	if (wait < 1000)
    38 	if (wait < 1000)
    39 	    {
    39 	    {
    40 	    wait = 1000;
    40 	    wait = 1000;
    41 	    }
    41 	    }
    42 	if (wait > 15000)
    42 	if (wait > 100000)
    43 	    {
    43 	    {
    44 	    wait = 15000;
    44 	    wait = 100000;
    45 	    }
    45 	    }
    46             
    46             
    47     HighRes( TTimeIntervalMicroSeconds32( wait ) );
    47     HighRes( TTimeIntervalMicroSeconds32( wait ) );
    48 	}
    48 	}
    49 	
    49