1
8




/*************  SLUGS2 GAME SPEED *************/

To alter game speed, change the two values above.
The first value is the vsync enable switch. The
second is the game frame rest.

The default values are:

    vsync: 1
    timer_rest: 8


vsync has two values: 0 (disable) and 1 (enable).
timer_rest can have any value from 0 to 100 (0 being
the fastest and 100 being the slowest).

IF THE GAME RUNS TOO FAST WITH THE DEFAULT VALUES:
-------------------------------------------------

    Try:

        vsync: 1
        timer_rest: 12


   -If it is still too fast, increase timer_rest.
   -If it is now too slow, reduce timer_rest


IF THE GAME RUNS TOO SLOW WITH THE DEFAULT VALUES:
--------------------------------------------------

    Try:


        vsync: 0
	timer_rest: 8

   -If it is still too slow, reduce timer_rest.  If it is too
    slow with timer_rest: 0, then you may have to reduce the
    resolution or screensize in the in-game options.
   -If it is now too fast, increase timer_rest.










 
