I have no idea why they didn't make it display the price in the cart, subtotals, and checkout but here goes.
If anyone sees any problems or can make it better please feel free.

<modification>
<id><![CDATA[Recurring Profile Cart Fix]]></id>
<version><![CDATA[1]]></version>
<vqmver><![CDATA[2.4.1]]></vqmver>
<author><![CDATA[Andrew Tite - andrewtite@me.com]]></author>
<file name="catalog/controller/checkout/confirm.php">
<operation info="Add Recurring Amount to Checkout Item Price">
<search position="replace"><![CDATA[$product['price']]]></search>
<add><![CDATA[($product['price']+$product['recurring_price'])]]></add>
</operation>
</file>
<file name="catalog/controller/checkout/cart.php">
<operation info="Add Recurring Amount to Checkout Item Price">
<search position="replace"><![CDATA[$product['price']]]></search>
<add><![CDATA[($product['price']+$product['recurring_price'])]]></add>
</operation>
</file>
</modification>