0x00439236
| 26 | |
| 27 | // 0x00439236 |
| 28 | static void draw(Ui::Window& window, Gfx::DrawingContext& drawingCtx) |
| 29 | { |
| 30 | auto tr = Gfx::TextRenderer(drawingCtx); |
| 31 | |
| 32 | auto versionInfo = Version::getVersionInfo(); |
| 33 | auto point = Point(window.x, window.y); |
| 34 | tr.drawString(point, AdvancedColour(Colour::white).outline(), versionInfo.c_str()); |
| 35 | |
| 36 | auto platformInfo = Version::getPlatformInfo(); |
| 37 | point.y += 12; |
| 38 | tr.drawString(point, AdvancedColour(Colour::white).outline(), platformInfo.c_str()); |
| 39 | } |
| 40 | |
| 41 | static constexpr WindowEventList kEvents = { |
| 42 | .draw = draw, |
nothing calls this directly
no test coverage detected