Added icons and version number, disabled 8x MSAA and set default to 2x

This commit is contained in:
Mr-Wiseguy
2024-03-15 19:47:29 -04:00
parent 37bc904b2a
commit 3520fdfbc5
16 changed files with 43 additions and 5 deletions
+3
View File
@@ -6,6 +6,8 @@
#include "nfd.h"
#include <filesystem>
std::string version_number = "v0.9.0";
Rml::DataModelHandle model_handle;
bool mm_rom_valid = false;
@@ -101,6 +103,7 @@ public:
Rml::DataModelConstructor constructor = context->CreateDataModel("launcher_model");
constructor.Bind("mm_rom_valid", &mm_rom_valid);
constructor.Bind("version_number", &version_number);
model_handle = constructor.GetModelHandle();
}