Skip to content

Commit

Permalink
fix cfg namespace name
Browse files Browse the repository at this point in the history
  • Loading branch information
vooon committed Mar 3, 2021
1 parent 227517b commit 3516b88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/display.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,8 @@ static void disp_thd(void *arg)

m_dis.init();

if (config::display::flip_v) m_dis.flipScreenVertically();
if (config::display::flip_h) m_dis.mirrorScreen();
if (cfg::display::flip_v) m_dis.flipScreenVertically();
if (cfg::display::flip_h) m_dis.mirrorScreen();

m_dis.setFont(Orbitron_Medium_16);

Expand Down

0 comments on commit 3516b88

Please sign in to comment.