Rename some variables to make their purpose clearer

This commit is contained in:
sfan5
2015-03-18 22:49:19 +01:00
parent 70b75507fe
commit a361e4d1eb
3 changed files with 36 additions and 36 deletions

View File

@ -15,9 +15,9 @@
#include "config.h"
struct PixelAttribute {
PixelAttribute(): height(std::numeric_limits<int>::min()), thicken(0) {};
PixelAttribute(): height(std::numeric_limits<int>::min()), thickness(0) {};
int height;
uint8_t thicken;
uint8_t thickness;
inline bool valid_height() {
return height != std::numeric_limits<int>::min();
}