diff options
author | Juan Linietsky <reduzio@gmail.com> | 2016-09-10 12:21:02 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-10 12:21:02 -0300 |
commit | fc61eb37ce004ecfa0656a46c68d111c68bb5c19 (patch) | |
tree | 0aa31fc3891596abca39042f27404f329e002b2d /bin/tests/test_misc.cpp | |
parent | 026c7913cf6f38b948d66484d97d7841fa1c9f16 (diff) | |
parent | a4674bda47ddeed7cc929bafdcd89b6bd156ee30 (diff) |
Merge pull request #5920 from 29jm/fix-warnings
Fix some more warnings
Diffstat (limited to 'bin/tests/test_misc.cpp')
-rw-r--r-- | bin/tests/test_misc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/tests/test_misc.cpp b/bin/tests/test_misc.cpp index 68564c62b0..9d7adc3573 100644 --- a/bin/tests/test_misc.cpp +++ b/bin/tests/test_misc.cpp @@ -431,7 +431,7 @@ public: RID lightaux = vs->light_create( VisualServer::LIGHT_DIRECTIONAL ); //vs->light_set_color( lightaux, VisualServer::LIGHT_COLOR_AMBIENT, Color(0.0,0.0,0.0) ); //vs->light_set_shadow( lightaux, true ); - RID light = vs->instance_create2( lightaux,scenario ); + vs->instance_create2( lightaux,scenario ); //rot_a=Transform(Matrix3(Vector3(1,0,0),Math_PI/2.0),Vector3()); rot_b=Transform(Matrix3(),Vector3(2,0,0)); |