Adds toggle for build info on N64 logo screen

This commit is contained in:
Ada 2022-05-01 21:23:13 +01:00
commit 2108f9fa6c
3 changed files with 35 additions and 30 deletions

View file

@ -579,6 +579,7 @@ namespace SohImGui {
ImGui::Separator(); ImGui::Separator();
EnhancementCheckbox("Debug Mode", "gDebugEnabled"); EnhancementCheckbox("Debug Mode", "gDebugEnabled");
EnhancementCheckbox("Show Build Info on Title Screen", "gShowTitleInfo");
ImGui::EndMenu(); ImGui::EndMenu();
} }

View file

@ -29,6 +29,7 @@ void BootCommands_Init()
CVar_RegisterS32("gUniformLR", 1); CVar_RegisterS32("gUniformLR", 1);
CVar_RegisterS32("gNewDrops", 0); CVar_RegisterS32("gNewDrops", 0);
CVar_RegisterS32("gVisualAgony", 0); CVar_RegisterS32("gVisualAgony", 0);
CVar_RegisterS32("gShowExtraTitleInfo", 0);
} }
//void BootCommands_ParseBootArgs(char* str) //void BootCommands_ParseBootArgs(char* str)

View file

@ -11,12 +11,14 @@
#include "textures/nintendo_rogo_static/nintendo_rogo_static.h" #include "textures/nintendo_rogo_static/nintendo_rogo_static.h"
#include <soh/Enhancements/bootcommands.h> #include <soh/Enhancements/bootcommands.h>
#include "GameVersions.h" #include "GameVersions.h"
#include "Cvar.h"
const char* GetGameVersionString(); const char* GetGameVersionString();
char* quote; char* quote;
void Title_PrintBuildInfo(Gfx** gfxp) { void Title_PrintBuildInfo(Gfx** gfxp) {
if (CVar_GetS32("gShowTitleInfo",0)!=0) {
Gfx* g; Gfx* g;
//GfxPrint* printer; //GfxPrint* printer;
GfxPrint printer; GfxPrint printer;
@ -53,6 +55,7 @@ void Title_PrintBuildInfo(Gfx** gfxp) {
GfxPrint_Destroy(&printer); GfxPrint_Destroy(&printer);
*gfxp = g; *gfxp = g;
} }
}
const char* quotes[11] = { const char* quotes[11] = {
"My boy! This peace is what all true warriors strive for!", "My boy! This peace is what all true warriors strive for!",