aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorCameron Cawley2019-03-09 19:26:59 +0000
committerLothar Serra Mari2019-03-09 21:52:14 +0100
commit09dbe7686b171a25106a0037abed608b886c9b71 (patch)
treec9af459f6c54588c2fc072b86c7d046724b19bdf /engines
parent1630cf0e6c4c278bc4913ecc0ba7503c5ff8eb06 (diff)
downloadscummvm-rg350-09dbe7686b171a25106a0037abed608b886c9b71.tar.gz
scummvm-rg350-09dbe7686b171a25106a0037abed608b886c9b71.tar.bz2
scummvm-rg350-09dbe7686b171a25106a0037abed608b886c9b71.zip
JANITORIAL: Update all scummvm.org URLS to use https
Diffstat (limited to 'engines')
-rw-r--r--engines/sci/detection_tables.h2
-rw-r--r--engines/sci/sci.cpp2
-rw-r--r--engines/sci/sci.h2
-rw-r--r--engines/sci/sound/midiparser_sci.cpp2
-rw-r--r--engines/testbed/misc.cpp4
5 files changed, 6 insertions, 6 deletions
diff --git a/engines/sci/detection_tables.h b/engines/sci/detection_tables.h
index ae11705fbe..dd7a626e12 100644
--- a/engines/sci/detection_tables.h
+++ b/engines/sci/detection_tables.h
@@ -3261,7 +3261,7 @@ static const struct ADGameDescription SciGameDescriptions[] = {
// Censored versions (data files are currently unknown to us): UK, Australia, first English release in Germany
// for more information on this matter, see:
- // http://wiki.scummvm.org/index.php/SCI/Phantasmagoria_2_Censorship
+ // https://wiki.scummvm.org/index.php/SCI/Phantasmagoria_2_Censorship
// Phantasmagoria 2 - English Windows (from jvprat) - US release
// Note: Fully uncensored
diff --git a/engines/sci/sci.cpp b/engines/sci/sci.cpp
index b2a914b9c3..6598b02735 100644
--- a/engines/sci/sci.cpp
+++ b/engines/sci/sci.cpp
@@ -313,7 +313,7 @@ Common::Error SciEngine::run() {
_features = new GameFeatures(segMan, _kernel);
// Only SCI0, SCI01 and SCI1 EGA games used a parser
_vocabulary = (getSciVersion() <= SCI_VERSION_1_EGA_ONLY) ? new Vocabulary(_resMan, false) : NULL;
- // Also, XMAS1990 apparently had a parser too. Refer to http://forums.scummvm.org/viewtopic.php?t=9135
+ // Also, XMAS1990 apparently had a parser too. Refer to https://forums.scummvm.org/viewtopic.php?t=9135
if (getGameId() == GID_CHRISTMAS1990)
_vocabulary = new Vocabulary(_resMan, false);
diff --git a/engines/sci/sci.h b/engines/sci/sci.h
index b7495498b6..2113ec2c43 100644
--- a/engines/sci/sci.h
+++ b/engines/sci/sci.h
@@ -219,7 +219,7 @@ enum SciGameId {
/**
* SCI versions
* For more information, check here:
- * http://wiki.scummvm.org/index.php/Sierra_Game_Versions#SCI_Games
+ * https://wiki.scummvm.org/index.php/Sierra_Game_Versions#SCI_Games
*/
enum SciVersion {
SCI_VERSION_NONE,
diff --git a/engines/sci/sound/midiparser_sci.cpp b/engines/sci/sound/midiparser_sci.cpp
index 1644eb6956..ad4b0da397 100644
--- a/engines/sci/sound/midiparser_sci.cpp
+++ b/engines/sci/sound/midiparser_sci.cpp
@@ -720,7 +720,7 @@ bool MidiParser_SCI::processEvent(const EventInfo &info, bool fireEvents) {
break;
case 0xB:
// Reference for some events:
- // http://wiki.scummvm.org/index.php/SCI/Specifications/Sound/SCI0_Resource_Format#Status_Reference
+ // https://wiki.scummvm.org/index.php/SCI/Specifications/Sound/SCI0_Resource_Format#Status_Reference
// Handle common special events
switch (info.basic.param1) {
case kSetReverb:
diff --git a/engines/testbed/misc.cpp b/engines/testbed/misc.cpp
index bda0a361a7..30cce8cee0 100644
--- a/engines/testbed/misc.cpp
+++ b/engines/testbed/misc.cpp
@@ -169,12 +169,12 @@ TestExitStatus MiscTests::testOpenUrl() {
return kTestSkipped;
}
- if (!g_system->openUrl("http://scummvm.org/")) {
+ if (!g_system->openUrl("https://scummvm.org/")) {
Testsuite::logPrintf("Info! openUrl() says it couldn't open the url (probably not supported on this platform)\n");
return kTestFailed;
}
- if (Testsuite::handleInteractiveInput("Was ScummVM able to open 'http://scummvm.org/' in your default browser?", "Yes", "No", kOptionRight)) {
+ if (Testsuite::handleInteractiveInput("Was ScummVM able to open 'https://scummvm.org/' in your default browser?", "Yes", "No", kOptionRight)) {
Testsuite::logDetailedPrintf("Error! openUrl() is not working!\n");
return kTestFailed;
}