Whitespace cleanup

Change-Id: I93c65973679894bb8587da4b38b410d38036b8bd
This commit is contained in:
Matt Mower
2016-12-30 18:10:37 -06:00
committed by Dees Troy
parent 55f2bdac06
commit a8a89d1961
33 changed files with 236 additions and 238 deletions

View File

@@ -108,7 +108,7 @@ GUISlider::~GUISlider()
int GUISlider::Render(void)
{
if(!isConditionTrue())
if (!isConditionTrue())
return 0;
if (!sSlider || !sSlider->GetResource())
@@ -136,7 +136,7 @@ int GUISlider::Render(void)
int GUISlider::Update(void)
{
if(!isConditionTrue())
if (!isConditionTrue())
return 0;
if (sUpdate)
@@ -146,7 +146,7 @@ int GUISlider::Update(void)
int GUISlider::NotifyTouch(TOUCH_STATE state, int x, int y)
{
if(!isConditionTrue())
if (!isConditionTrue())
return -1;
static bool dragging = false;