Rename version macros

This commit is contained in:
rock88 2020-05-30 16:31:36 +03:00
parent 240330cbf0
commit 210b36d647
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@
#include <vector>
#pragma once
#define MOONLIGHT_LIBRETRO_VERSION "1.0.8"
#define MOONLIGHT_NX_VERSION "1.0.8"
enum VideoCodec: int {
H264,

View file

@ -71,7 +71,7 @@ void MainWindow::draw(NVGcontext *ctx) {
nvgFillColor(ctx, Color(255, 255, 255, 200));
nvgFontSize(ctx, 20);
nvgFontFace(ctx, "sans");
nvgText(ctx, width() - 40, height() - 8, MOONLIGHT_LIBRETRO_VERSION, NULL);
nvgText(ctx, width() - 40, height() - 12, MOONLIGHT_NX_VERSION, NULL);
nvgRestore(ctx);
}