aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormax-001 <maxsmits21@kpnmail.nl>2024-11-24 12:01:41 +0100
committermax-001 <maxsmits21@kpnmail.nl>2024-11-24 12:01:41 +0100
commit41df3ad8836ce9c686a12fa7da5b4daebe94ba05 (patch)
tree7949efe69f46b7fb9b11d45bcc24ce7d2920a2bf /src
parentb5fc0b66f7db21c2b134dbec8ce16398fd4e19fe (diff)
Make format
Diffstat (limited to 'src')
-rw-r--r--src/crepe/ComponentManager.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/crepe/ComponentManager.cpp b/src/crepe/ComponentManager.cpp
index 5c0ef3d..a90502d 100644
--- a/src/crepe/ComponentManager.cpp
+++ b/src/crepe/ComponentManager.cpp
@@ -35,8 +35,7 @@ void ComponentManager::delete_all_components() {
}
GameObject ComponentManager::new_object(const string & name, const string & tag,
- const vec2 & position, double rotation,
- double scale) {
+ const vec2 & position, double rotation, double scale) {
// Find the first available id (taking persistent objects into account)
while (this->persistent[this->next_id]) {
this->next_id++;