[Scummvm-git-logs] scummvm master -> 828c6da4ae9ccc8b7f4a226d579f1fbd2f388d1e

neuromancer noreply at scummvm.org
Fri Jun 3 11:02:27 UTC 2022


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
828c6da4ae HYPNO: Switch the resolution for the Wetlands demo menu to 320x200


Commit: 828c6da4ae9ccc8b7f4a226d579f1fbd2f388d1e
    https://github.com/scummvm/scummvm/commit/828c6da4ae9ccc8b7f4a226d579f1fbd2f388d1e
Author: Cameron Cawley (ccawley2011 at gmail.com)
Date: 2022-06-03T13:02:25+02:00

Commit Message:
HYPNO: Switch the resolution for the Wetlands demo menu to 320x200

Changed paths:
    engines/hypno/wet/wet.cpp


diff --git a/engines/hypno/wet/wet.cpp b/engines/hypno/wet/wet.cpp
index 61c81f31912..dc220f8b582 100644
--- a/engines/hypno/wet/wet.cpp
+++ b/engines/hypno/wet/wet.cpp
@@ -123,7 +123,7 @@ void WetEngine::loadAssetsDemoDisc() {
 	hs.push_back(h);
 
 	h.type = MakeHotspot;
-	h.rect = Common::Rect(0, 424, 233, 462);
+	h.rect = Common::Rect(0, 177, 116, 192);
 	h.actions.clear();
 	h.smenu = nullptr;
 	ChangeLevel *cl = new ChangeLevel("<intro>");
@@ -131,14 +131,14 @@ void WetEngine::loadAssetsDemoDisc() {
 
 	hs.push_back(h);
 
-	h.rect = Common::Rect(242, 424, 500, 480);
+	h.rect = Common::Rect(121, 177, 250, 200);
 	cl = new ChangeLevel("<movies>");
 	h.actions.clear();
 	h.actions.push_back(cl);
 
 	hs.push_back(h);
 
-	h.rect = Common::Rect(504, 424, 637, 480);
+	h.rect = Common::Rect(252, 177, 318, 200);
 	Quit *q = new Quit();
 	h.actions.clear();
 	h.actions.push_back(q);
@@ -146,6 +146,7 @@ void WetEngine::loadAssetsDemoDisc() {
 	hs.push_back(h);
 
 	Scene *start = new Scene();
+	start->resolution = "320x200";
 	start->hots = hs;
 	_levels["<start>"] = start;
 




More information about the Scummvm-git-logs mailing list