OK, I fixed it (I think)

In file ot_reward_points_display.php (order total modules)

There was a code:
Code:
if(isset($_SESSION['redeem_value']))
		{
			$redeem_ratio=GetRedeemRatio($_SESSION['customer_id']);
			$reward_points=$reward_points/$redeem_ratio;
			$reward_points=$reward_points-$_SESSION['redeem_value'];
			$reward_points=$reward_points*$redeem_ratio;
		}
I commented the line that didn't seem right and voila:
Code:
if(isset($_SESSION['redeem_value']))
		{
			$redeem_ratio=GetRedeemRatio($_SESSION['customer_id']);
			$reward_points=$reward_points/$redeem_ratio;
			//$reward_points=$reward_points-$_SESSION['redeem_value'];
			$reward_points=$reward_points*$redeem_ratio;
		}