diff options
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 |
