Browse Source

Merge pull request #917 from ablake/next

Fixing upside-down "full image" UVs used as defaults.
Adam Blake 13 years ago
parent
commit
ab18887598
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()
 const Theme::UVs& Theme::UVs::full()
 {
 {
-    static UVs full(0, 0, 1, 1);
+    static UVs full(0, 1, 1, 0);
     return full;
     return full;
 }
 }