Skip to content
This repository has been archived by the owner on Apr 24, 2020. It is now read-only.

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
SAMUD committed Dec 26, 2016
1 parent edf72fb commit 4a610ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions KISS_OSD/Functions_algo.ino
Original file line number Diff line number Diff line change
Expand Up @@ -471,12 +471,12 @@ void DisplayOSD()
OSD.print(percent);
}

//show armed | dissarmed
//show armed | DISARMED
if (armed == 0)
{
OSD.setCursor(4, MarginMiddleY);
MarginMiddleY++;
OSD.print(F(" DISSARMED "));
OSD.print(F(" DISARMED "));
armedstarted = millis();
}
else if (armedstarted + 2000>millis())
Expand Down

0 comments on commit 4a610ee

Please sign in to comment.