diff options
| author | Pierre Bourdon <delroth@gmail.com> | 2016-06-24 10:43:46 +0200 |
|---|---|---|
| committer | Pierre Bourdon <delroth@gmail.com> | 2016-06-24 10:43:46 +0200 |
| commit | 3570c7f03a2aa90aa634f96c0af1969af610f14d (patch) | |
| tree | 4252e03c0e853ba7cffe022937698c854ad0eaa9 /Source/Core/VideoCommon/BoundingBox.cpp | |
| parent | 2115e8a4a6814e32107b5205ff5c95bbd3c6e99c (diff) | |
Reformat all the things. Have fun with merge conflicts.
Diffstat (limited to 'Source/Core/VideoCommon/BoundingBox.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/BoundingBox.cpp | 11 |
1 files changed, 5 insertions, 6 deletions
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 |
