chore: don't show "attempt to resume" in release builds

This commit is contained in:
goat 2022-08-17 20:26:30 +02:00
parent 951118ceb6
commit 84961be782
No known key found for this signature in database
GPG key ID: 49E2AA8C6A76498B

View file

@ -564,9 +564,16 @@ int main() {
config.cRadioButtons = ARRAYSIZE(radios);
config.nDefaultRadioButton = IdRadioRestartNormal;
config.cxWidth = 300;
#if _DEBUG
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"
);
#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
//config.hwndParent = FindWindowA("FFXIVGAME", NULL);