mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-22 14:23:44 -07:00
Adds toggle for build info on N64 logo screen
This commit is contained in:
parent
e646f80f41
commit
2108f9fa6c
3 changed files with 35 additions and 30 deletions
|
@ -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();
|
||||||
}
|
}
|
||||||
|
|
|
@ -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)
|
||||||
|
|
|
@ -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!",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue