Runtime/Behavior Changes

Minor fix to shrunken

This function used to take in a reference and altered the object in place. The original rect is no longer altered, only the returned rect will have the shrunken (correct) size.

Old: public rectI shrunken(rectI& this, int x, int y) : inline {
New: public rectI shrunken(rectI this, int x, int y) : inline {