summaryrefslogtreecommitdiff
path: root/src/camera.h
diff options
context:
space:
mode:
authorShadowNinja <shadowninja@minetest.net>2015-03-27 20:24:04 -0400
committerShadowNinja <shadowninja@minetest.net>2015-03-27 20:24:04 -0400
commit30075467b84c79ff21736d6c447746caef07dcd0 (patch)
treecfdfe0ed15d488840e03597bca6c2320a8dec55e /src/camera.h
parent3d53c90d4b34563ef27bc38da211dab91b72d321 (diff)
downloadminetest-30075467b84c79ff21736d6c447746caef07dcd0.tar.gz
minetest-30075467b84c79ff21736d6c447746caef07dcd0.tar.bz2
minetest-30075467b84c79ff21736d6c447746caef07dcd0.zip
Change error_message from wstring to string
This removes a lot of narrow/wide conversions where a wide string was never used.
Diffstat (limited to 'src/camera.h')
-rw-r--r--src/camera.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/camera.h b/src/camera.h
index b53738860..b0d190a3a 100644
--- a/src/camera.h
+++ b/src/camera.h
@@ -110,7 +110,7 @@ public:
}
// Checks if the constructor was able to create the scene nodes
- bool successfullyCreated(std::wstring& error_message);
+ bool successfullyCreated(std::string &error_message);
// Step the camera: updates the viewing range and view bobbing.
void step(f32 dtime);