Skip to content

Commit

Permalink
TSAGE: Bugfix for skipping cutscenes correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed May 4, 2011
1 parent 340d08b commit a67dbd5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engines/tsage/converse.cpp
Expand Up @@ -741,8 +741,8 @@ void StripManager::process(Event &event) {
if ((event.eventType == EVENT_KEYPRESS) && (event.kbd.keycode == Common::KEYCODE_ESCAPE)) {
if (_obj44Index != 10000) {
int currIndex = _obj44Index;
while (!_obj44List[_obj44Index + 1]._id) {
_obj44Index = getNewIndex(_obj44List[_obj44Index]._id);
while (!_obj44List[_obj44Index]._list[1]._id) {
_obj44Index = getNewIndex(_obj44List[_obj44Index]._list[0]._id);
if ((_obj44Index < 0) || (_obj44Index == 10000))
break;
currIndex = _obj44Index;
Expand Down

0 comments on commit a67dbd5

Please sign in to comment.