[Scummvm-cvs-logs] scummvm master -> d91c8b9add255828bb363020077d91a49ebe3d99
dreammaster
dreammaster at scummvm.org
Sun Mar 30 05:21:13 CEST 2014
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:
d91c8b9add TSAGE: Fix incorrect cursor when changing R2RW desert areas
Commit: d91c8b9add255828bb363020077d91a49ebe3d99
https://github.com/scummvm/scummvm/commit/d91c8b9add255828bb363020077d91a49ebe3d99
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2014-03-29T23:04:01-04:00
Commit Message:
TSAGE: Fix incorrect cursor when changing R2RW desert areas
Changed paths:
engines/tsage/ringworld2/ringworld2_scenes3.cpp
diff --git a/engines/tsage/ringworld2/ringworld2_scenes3.cpp b/engines/tsage/ringworld2/ringworld2_scenes3.cpp
index 95f8c85..3f32503 100644
--- a/engines/tsage/ringworld2/ringworld2_scenes3.cpp
+++ b/engines/tsage/ringworld2/ringworld2_scenes3.cpp
@@ -5048,6 +5048,7 @@ void Scene3700::signal() {
Scene3800::Scene3800() {
_desertDirection = 0;
+ _skylineRect.set(0, 0, 320, 87);
}
void Scene3800::synchronize(Serializer &s) {
@@ -5220,7 +5221,8 @@ void Scene3800::initExits() {
}
void Scene3800::enterArea() {
- R2_GLOBALS._player.disableControl();
+ R2_GLOBALS._player.disableControl(CURSOR_WALK);
+
switch (_desertDirection) {
case 0:
R2_GLOBALS._player.postInit();
@@ -5346,7 +5348,6 @@ void Scene3800::postInit(SceneObjectList *OwnerList) {
_westExit.setDetails(Rect(0, 87, 14, 168), EXITCURSOR_W, 3800);
_westExit.setDest(Common::Point(7, 145));
- _skylineRect.set(0, 0, 320, 87);
_background.setDetails(Rect(0, 0, 320, 200), 3800, 0, 1, 2, 1, (SceneItem *) NULL);
enterArea();
More information about the Scummvm-git-logs
mailing list