aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/SceneManager.cpp
diff options
context:
space:
mode:
authormax-001 <maxsmits21@kpnmail.nl>2024-11-06 10:06:15 +0100
committermax-001 <maxsmits21@kpnmail.nl>2024-11-06 10:06:15 +0100
commit2fce3e3985302544827f6bf4dcc3a46cae3f2fd1 (patch)
tree8722000cc7d33a280f5ddd4b59bd216c2b9e3872 /src/crepe/api/SceneManager.cpp
parent452944cd6dc666a58f5f8441b6cde0aaf8cc48aa (diff)
Used const references instead of pass by value
Diffstat (limited to 'src/crepe/api/SceneManager.cpp')
-rw-r--r--src/crepe/api/SceneManager.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/crepe/api/SceneManager.cpp b/src/crepe/api/SceneManager.cpp
index c8061c9..6fc8f9b 100644
--- a/src/crepe/api/SceneManager.cpp
+++ b/src/crepe/api/SceneManager.cpp
@@ -3,6 +3,7 @@
#include "SceneManager.h"
using namespace crepe;
+using namespace std;
SceneManager::SceneManager() {}
@@ -12,7 +13,7 @@ SceneManager & SceneManager::get_instance() {
}
// Push the next scene onto the queue
-void SceneManager::load_scene(std::string name) { next_scene.push(name); }
+void SceneManager::load_scene(const std::string & name) { next_scene.push(name); }
// Load a new scene from the queue (if there is one)
void SceneManager::empty_queue() {