Skip to content

Commit eb57ad4

Browse files
committed
Fix merging problems after PR
1 parent b1e52e0 commit eb57ad4

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

OLEDDisplay.h

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,14 +111,12 @@ typedef byte (*FontTableLookupFunction)(const byte ch);
111111

112112

113113
class OLEDDisplay : public Print {
114-
private:
115-
const int _width, _height;
116114

117115
public:
118116
virtual ~OLEDDisplay();
119117

120-
const int width(void) const { return displayWidth; };
121-
const int height(void) const { return displayHeight; };
118+
const uint16_t width(void) const { return displayWidth; };
119+
const uint16_t height(void) const { return displayHeight; };
122120

123121
// Initialize the display
124122
bool init();

0 commit comments

Comments
 (0)