From 3570c7f03a2aa90aa634f96c0af1969af610f14d Mon Sep 17 00:00:00 2001 From: Pierre Bourdon Date: Fri, 24 Jun 2016 10:43:46 +0200 Subject: Reformat all the things. Have fun with merge conflicts. --- Source/Core/VideoCommon/BoundingBox.cpp | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'Source/Core/VideoCommon/BoundingBox.cpp') diff --git a/Source/Core/VideoCommon/BoundingBox.cpp b/Source/Core/VideoCommon/BoundingBox.cpp index 016d80edc7..4c9b6c4c3b 100644 --- a/Source/Core/VideoCommon/BoundingBox.cpp +++ b/Source/Core/VideoCommon/BoundingBox.cpp @@ -2,22 +2,21 @@ // Licensed under GPLv2+ // Refer to the license.txt file included. +#include "VideoCommon/BoundingBox.h" #include "Common/ChunkFile.h" #include "Common/CommonTypes.h" -#include "VideoCommon/BoundingBox.h" namespace BoundingBox { - // External vars bool active = false; -u16 coords[4] = { 0x80, 0xA0, 0x80, 0xA0 }; +u16 coords[4] = {0x80, 0xA0, 0x80, 0xA0}; // Save state void DoState(PointerWrap& p) { - p.Do(active); - p.Do(coords); + p.Do(active); + p.Do(coords); } -} // namespace BoundingBox +} // namespace BoundingBox -- cgit v1.2.3