commit 2308c508f036e4771ebad8957bce86964da4af49
parent e26a89caec324ad23a0867d519285dd2cfcbf924
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date: Mon, 9 Jan 2017 15:05:34 +0100
Change default value for user sun direction.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/solstice_entity.c b/src/solstice_entity.c
@@ -267,7 +267,7 @@ solstice_setup_entities(struct solstice* solstice)
{
struct solparser_entity_iterator it, it_end;
struct score_node* root = NULL;
- const double dummy_sun_dir[3] = {0, 0, 1}; /* Use the user defined dir */
+ const double dummy_sun_dir[3] = {0, 0, -1};
res_T res = RES_OK;
ASSERT(solstice && solstice->parser && solstice->score);