diff options
author | Daniel Lea <danlea@gmail.com> | 2008-05-13 17:33:00 +0200 |
---|---|---|
committer | Danny Baumann <dannybaumann@web.de> | 2008-05-13 17:33:00 +0200 |
commit | 2f0893baa06a912ae5304b12329812187358f1d5 (patch) | |
tree | 5ee9f678eadb7bed46a5b13d51f4cf229ade94f5 | |
parent | ff34f7b00f88ea2026879a905f50fd211fa528f6 (diff) |
Fix skydome animation tilt behaviour.
-rw-r--r-- | plugins/cube.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/cube.c b/plugins/cube.c index db50fd6b..80801310 100644 --- a/plugins/cube.c +++ b/plugins/cube.c @@ -1139,8 +1139,8 @@ cubeClearTargetOutput (CompScreen *s, if (cs->opt[CUBE_SCREEN_OPTION_SKYDOME_ANIM].value.b && cs->grabIndex == 0) { - glRotatef (xRotate, 0.0f, 1.0f, 0.0f); glRotatef (vRotate / 5.0f + 90.0f, 1.0f, 0.0f, 0.0f); + glRotatef (xRotate, 0.0f, 1.0f, 0.0f); } else { |