Ok, I wanted to figure out how to fix this so I spent more time after my first post.
Here's how I got the file system fixed and the steps I used.
Edit VM settigns to boot into BOIS
Power on VM and set CD-ROM as 1st in boot order
Boot Ubuntu 13.10 Live CD (It's what I had available)
Once booted, open files and double click on the 15 or 16GB partition to mount it.
Open terminal and run the following commands (will vary based on your mount point)
I changed to root in the ubuntu live cd at this point by using "sudo -s"
chroot /media/ubuntu/*drivename*
passwd root
enter new password twice
Power off the VM once completed, remove the Ubuntu live CD, then power on
Now boot standard and hit CTRL+ALT+F2 when it gets stuck
type new root password you just created and it should drop you to a root prompt
now run: fsck /dev/sda1
tell it "y" as many times needed to fix all the broken things
type "reboot" when it's done.
Now it will boot up and work (it did in my case).
You can watch it boot by using CTRL+ALT+F2 again and when it's booted all the way you should be able to log it.

Feel free to give feedback if this helps or works in your case.
-Reece