mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
chore: don't show "attempt to resume" in release builds
This commit is contained in:
parent
951118ceb6
commit
84961be782
1 changed files with 8 additions and 1 deletions
|
|
@ -564,10 +564,17 @@ int main() {
|
||||||
config.cRadioButtons = ARRAYSIZE(radios);
|
config.cRadioButtons = ARRAYSIZE(radios);
|
||||||
config.nDefaultRadioButton = IdRadioRestartNormal;
|
config.nDefaultRadioButton = IdRadioRestartNormal;
|
||||||
config.cxWidth = 300;
|
config.cxWidth = 300;
|
||||||
|
|
||||||
|
#if _DEBUG
|
||||||
config.pszFooter = (L""
|
config.pszFooter = (L""
|
||||||
R"aa(<a href="help">Help</a> | <a href="logdir">Open log directory</a> | <a href="logfile">Open log file</a> | <a href="resume">Attempt to resume</a>)aa"
|
R"aa(<a href="help">Help</a> | <a href="logdir">Open log directory</a> | <a href="logfile">Open log file</a> | <a href="resume">Attempt to resume</a>)aa"
|
||||||
);
|
);
|
||||||
|
#else
|
||||||
|
config.pszFooter = (L""
|
||||||
|
R"aa(<a href="help">Help</a> | <a href="logdir">Open log directory</a> | <a href="logfile">Open log file</a>)aa"
|
||||||
|
);
|
||||||
|
#endif
|
||||||
|
|
||||||
// Can't do this, xiv stops pumping messages here
|
// Can't do this, xiv stops pumping messages here
|
||||||
//config.hwndParent = FindWindowA("FFXIVGAME", NULL);
|
//config.hwndParent = FindWindowA("FFXIVGAME", NULL);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue