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
+1 -1
View File
@@ -21,7 +21,7 @@ constexpr std::u8string_view sound_filename = u8"sound.json";
constexpr auto res_default = ultramodern::Resolution::Auto;
constexpr auto wm_default = ultramodern::WindowMode::Windowed;
constexpr auto ar_default = RT64::UserConfiguration::AspectRatio::Expand;
constexpr auto msaa_default = RT64::UserConfiguration::Antialiasing::MSAA4X;
constexpr auto msaa_default = RT64::UserConfiguration::Antialiasing::MSAA2X;
constexpr auto rr_default = RT64::UserConfiguration::RefreshRate::Display;
constexpr int rr_manual_default = 60;
constexpr bool developer_mode_default = false;
+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();
}