mirror of
https://github.com/spiffcode/hostile-takeover.git
synced 2026-04-04 20:37:59 -06:00
Set kszForumUrl in serviceurls.cpp
This commit is contained in:
parent
573c8aafd3
commit
aeb247e975
@ -244,8 +244,8 @@ void Shell::Launch(bool fLoadReinitializeSave, MissionIdentifier *pmiid)
|
||||
DoModalGameOptionsForm(m_ppal, false);
|
||||
continue;
|
||||
|
||||
case kidcForums:
|
||||
HostOpenUrl("<TODO: replace with link to forums>");
|
||||
case kidcForums:
|
||||
HostOpenUrl(kszForumUrl);
|
||||
continue;
|
||||
|
||||
case kidcHelp:
|
||||
|
||||
@ -12,6 +12,7 @@ const char *kszUpdateAccountUrl = "http://localhost:8080/accounts/updateaccount"
|
||||
const char *kszLeaderboardUrl = "http://localhost:8080/stats/leaderboard";
|
||||
const char *kszServerInfoUrl = "http://localhost:8080/api/serverinfo";
|
||||
const char *kszSyncErrorUploadUrl = "<REPLACE ME: sync error upload test URL>";
|
||||
const char *kszForumUrl = "<TODO: replace with link to forums>";
|
||||
#else
|
||||
// TODO: Hostile Takeover should have its own server hosting its Mission Packs.
|
||||
// In the meantime grab them from the Warfare Incorporated server.
|
||||
@ -26,6 +27,7 @@ const char *kszUpdateAccountUrl = "https://<GAE APPNAME>.appspot.com/accounts/up
|
||||
const char *kszLeaderboardUrl = "http://<GAE APPNAME>.appspot.com/stats/leaderboard";
|
||||
const char *kszServerInfoUrl = "http://<GAE APPNAME>.appspot.com/api/serverinfo";
|
||||
const char *kszSyncErrorUploadUrl = "http://<GAE APPNAME>.appspot.com/api/syncerror";
|
||||
const char *kszForumUrl = "<TODO: replace with link to forums>";
|
||||
#endif
|
||||
|
||||
} // namespace wi
|
||||
|
||||
@ -12,6 +12,7 @@ extern const char *kszUpdateAccountUrl;
|
||||
extern const char *kszLeaderboardUrl;
|
||||
extern const char *kszServerInfoUrl;
|
||||
extern const char *kszSyncErrorUploadUrl;
|
||||
extern const char *kszForumUrl;
|
||||
|
||||
};
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user