Browse Source

Fixing upside-down "full image" UVs used as defaults.

Adam Blake 12 years ago
parent
commit
da98236cc6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gameplay/src/Theme.cpp

+ 1 - 1
gameplay/src/Theme.cpp

@@ -509,7 +509,7 @@ const Theme::UVs& Theme::UVs::empty()
 
 const Theme::UVs& Theme::UVs::full()
 {
-    static UVs full(0, 0, 1, 1);
+    static UVs full(0, 1, 1, 0);
     return full;
 }