Skip to content

Commit

Permalink
Merge pull request meshtastic#3293 from meshtastic/font-fix
Browse files Browse the repository at this point in the history
fix compilation for Cyrillic fonts
  • Loading branch information
caveman99 authored Feb 26, 2024
2 parents 146b5b5 + d556d59 commit f708e41
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/modules/esp32/PaxcounterModule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,14 @@ int32_t PaxcounterModule::runOnce()

#if HAS_SCREEN

#ifdef OLED_RU
#include "graphics/fonts/OLEDDisplayFontsRU.h"
#endif

#ifdef OLED_UA
#include "graphics/fonts/OLEDDisplayFontsUA.h"
#endif

// TODO / FIXME: This code is copied from src/graphics/Screen.cpp
// It appears (in slightly variants) also in other modules like
// src/modules/Telemetry/PowerTelemetry.cpp, src/modules/Telemetry/EnvironmentTelemetry.cpp
Expand Down

0 comments on commit f708e41

Please sign in to comment.