Fixed ImageFont.

This commit is contained in:
rude
2010-03-03 20:38:21 +01:00
parent 806d085ee9
commit 78c783bb57
4 changed files with 68 additions and 86 deletions
+1 -2
View File
@@ -32,7 +32,7 @@ namespace image
struct pixel
{
// Red, green, blue, alpha.
unsigned char r, g, b, a;
unsigned char r, g, b, a;
};
/**
@@ -95,7 +95,6 @@ namespace image
**/
virtual pixel getPixel(int x, int y) const = 0;
}; // ImageData
} // image