Skip to content

Commit

Permalink
Version display update.
Browse files Browse the repository at this point in the history
  • Loading branch information
sorgelig committed Mar 22, 2019
1 parent 00a75bd commit 20b67f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "fpga_io.h"
#include "scheduler.h"

const char *version = "$VER:HPS" VDATE;
const char *version = "$VER:" VDATE;

int main(int argc, char *argv[])
{
Expand Down
4 changes: 2 additions & 2 deletions menu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1897,7 +1897,7 @@ void HandleUI(void)
OsdDrawLogo(3);
OsdDrawLogo(4);

sprintf(s, " ARM s/w ver. %s", version + 5);
sprintf(s, " HPS s/w v%s", version + 5);
OsdWrite(10, s, 0, 0, 1);

s[0] = 0;
Expand Down Expand Up @@ -3371,7 +3371,7 @@ void HandleUI(void)

OsdSetTitle("System Settings", 0);
OsdWrite(0, "", 0, 0);
sprintf(s, " ARM s/w ver. %s", version + 5);
sprintf(s, " HPS s/w v%s", version + 5);
OsdWrite(1, s, 0, 0);

{
Expand Down

0 comments on commit 20b67f2

Please sign in to comment.