aboutsummaryrefslogtreecommitdiff
path: root/src/common/Font.hpp
diff options
context:
space:
mode:
authorfschildt <florian.schildt@protonmail.com>2025-10-01 14:08:24 +0200
committerfschildt <florian.schildt@protonmail.com>2025-10-01 14:09:13 +0200
commitc775ca6133d93ed97359a6a50bd94a5563c740de (patch)
tree9d3efb1c7e7538ff9d5cae408d2c29f9dd3daeab /src/common/Font.hpp
parent41c2e2ecfcccf62b3c646980dd283848e33a8134 (diff)
general refactoring, prepare breakout game
Diffstat (limited to 'src/common/Font.hpp')
-rw-r--r--src/common/Font.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/Font.hpp b/src/common/Font.hpp
index a594add..91afe06 100644
--- a/src/common/Font.hpp
+++ b/src/common/Font.hpp
@@ -5,8 +5,8 @@
struct MonoBitmap {
- int32_t width;
- int32_t height;
+ int32_t w;
+ int32_t h;
std::unique_ptr<uint8_t> pixels;
};