#!/bin/bash
if [ "$PLAYONLINUX" = "" ]
then
exit 0
fi
source "$PLAYONLINUX/lib/sources"
cfg_check
cd $REPERTOIRE/tmp/
FILE="fps_gears.txt" 
MINFPS=100 
if [ -e $PLAYONLINUX/bin/glx/gears ]
then
	rm -f $FILE
	$PLAYONLINUX/bin/glx/gears
        FPS=`cat $FILE`
	rm $FILE -f
	message "$LNG_HAVE $FPS FPS"
fi
exit $EXIT_SUCCES
