Browse Source

Fixed return type of getUVImage().

Daniel Kauth 11 years ago
parent
commit
1750603a1d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      bbiwarg/DataSource/IisuDataSource.cs

+ 1 - 1
bbiwarg/DataSource/IisuDataSource.cs

@@ -178,7 +178,7 @@ namespace bbiwarg.DataSource
             return new ConfidenceImage(width, height, confidenceData);
         }
 
-        public VertexArray getUVImage()
+        public UVImage getUVImage()
         {
             Iisu.Data.IImageInfos imageInfos = uvImage.Value.ImageInfos;
             int width = (int)imageInfos.Width;