You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.1 KiB
30 lines
1.1 KiB
|
5 years ago
|
#include "DiabloUI/support_lines.h"
|
||
|
|
|
||
|
|
namespace dvl {
|
||
|
|
|
||
|
|
const char *const SUPPORT_LINES[] = {
|
||
|
|
"",
|
||
|
|
"GOG.com maintains a web site at https://www.gog.com/forum/diablo",
|
||
|
|
"Follow the links to visit the discussion boards associated with Diablo.",
|
||
|
|
"and the Hellfire expansion.",
|
||
|
|
"",
|
||
|
|
"DevilutionX is maintained by Diasurgical, issues and bugs can be reported",
|
||
|
|
"at this address: https://github.com/diasurgical/devilutionX",
|
||
|
|
"To help us better serve you, please be sure to include the version number,",
|
||
|
|
"operating system, and the nature of the problem.",
|
||
|
|
"",
|
||
|
|
"",
|
||
|
|
"Disclaimer:",
|
||
|
|
" DevilutionX is not supported or maintained by Blizzard Entertainment,",
|
||
|
|
" nor GOG.com. Neither Blizzard Entertainment or GOG.com has not tested or",
|
||
|
|
" certified the quality or compatibility of DevilutionX. All inquiries",
|
||
|
|
" regarding DevilutionX should be directed to Diasurgical, not to Blizzard",
|
||
|
|
" Entertainment or GOG.com.",
|
||
|
|
"",
|
||
|
|
"",
|
||
|
|
};
|
||
|
|
|
||
|
|
const std::size_t SUPPORT_LINES_SIZE = sizeof(SUPPORT_LINES) / sizeof(SUPPORT_LINES[0]);
|
||
|
|
|
||
|
|
} // namespace dvl
|