Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2012-04-30 15:27:10 +0000
committerStijn Buys <ingar@osirion.org>2012-04-30 15:27:10 +0000
commite1ca4c711a5b54653f58f6320f193bae1be62f61 (patch)
tree134973b9dc1bc69055324dc8e4f3f442f59766d2 /src/entityproperties.cc
parente3af85ab1a06742ba23c815b80887fdbf32fe36c (diff)
Corrected parameter order of the entity angles key
Diffstat (limited to 'src/entityproperties.cc')
-rw-r--r--src/entityproperties.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/entityproperties.cc b/src/entityproperties.cc
index 4303b75..533c1fc 100644
--- a/src/entityproperties.cc
+++ b/src/entityproperties.cc
@@ -107,7 +107,7 @@ void EntityProperties::save(QTextStream &textstream)
// angles
save_comment(textstream, "angles");
- textstream << "angles=" << angles().x() << " " << angles().y() << " " << angles().z() << '\n';
+ textstream << "angles=" << angles().y() << " " << angles().x() << " " << angles().z() << '\n';
// radius
save_comment(textstream, "radius");