Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Ball_Blue.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright © 2014 CCP ehf.

#include "stdafx.h"
#include "StdAfx.h"

#include "Ball.h"
#include "Ballpark.h"
Expand Down
2 changes: 1 addition & 1 deletion src/Ballpark.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright © 2014 CCP ehf.

#include "stdafx.h"
#include "StdAfx.h"
#include <math.h>
#ifdef _MSC_VER
#include <fpieee.h>
Expand Down
2 changes: 1 addition & 1 deletion src/Box.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright © 2014 CCP ehf.

#include "stdafx.h"
#include "StdAfx.h"
#include "Box.h"
#include "SortedSets.h"
#include "StaticCollidable.h"
Expand Down
2 changes: 1 addition & 1 deletion src/Capsule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include "Capsule.h"
#include "Collision.h"
#include "Ball.h"
#include "BallPark.h"
#include "Ballpark.h"
#include "Settings.h"


Expand Down
2 changes: 1 addition & 1 deletion src/Partition.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright © 2014 CCP ehf.

#include "stdafx.h"
#include "StdAfx.h"
#include "Partition.h"
#include "Box.h"
#include "Ball.h"
Expand Down
2 changes: 1 addition & 1 deletion src/Random.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright © 2014 CCP ehf.

#include "stdafx.h"
#include "StdAfx.h"
#include "Random.h"


Expand Down
2 changes: 1 addition & 1 deletion src/Settings.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#pragma once
#ifndef DESTINY_SETTINGS_H
#define DESTINY_SETTINGS_H
#include "stdafx.h"
#include "StdAfx.h"


constexpr size_t g_collisionMaxIterationsDefault = 20;
Expand Down
2 changes: 1 addition & 1 deletion src/StdAfx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// destiny.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information

#include "stdafx.h"
#include "StdAfx.h"

// TODO: reference any additional headers you need in STDAFX.H
// and not in this file
Expand Down
2 changes: 1 addition & 1 deletion src/Thunkers.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright © 2014 CCP ehf.

#include "stdafx.h"
#include "StdAfx.h"
#include "Ballpark.h"
#include "Ball.h"
#include "Box.h"
Expand Down
2 changes: 1 addition & 1 deletion src/destiny.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright © 2000 CCP ehf.

#include "stdafx.h"
#include "StdAfx.h"


#include "Ball.h"
Expand Down