From 8307f4daaeb49daa5e749bb2ff7fd9b70a3674c9 Mon Sep 17 00:00:00 2001 From: jp9000 Date: Thu, 25 Jul 2013 12:53:45 -0700 Subject: [PATCH] get rid of some annoying whitespace --- OBSApi/Scene.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OBSApi/Scene.h b/OBSApi/Scene.h index ec8f4996..edab741f 100644 --- a/OBSApi/Scene.h +++ b/OBSApi/Scene.h @@ -99,7 +99,7 @@ public: inline Vect2 GetPos() const {return pos;} inline Vect2 GetSize() const {return size;} inline Vect2 GetScale() const {return source ? (source->GetSize() / size) : Vect2(1.0f, 1.0f);} - + inline bool IsCropped() const {return !(CloseFloat(crop.w, 0.0f) && CloseFloat(crop.x, 0.0f) && CloseFloat(crop.y, 0.0f) && CloseFloat(crop.z, 0.0f));} inline void SetPos(const Vect2 &newPos) {pos = newPos;} @@ -117,7 +117,7 @@ public: Vect2 GetCropTR(); Vect2 GetCropBR(); Vect2 GetCropBL(); - + void Update(); void MoveUp();