[ scummvm-Bugs-952723 ] text speed should not be limited to 90

SourceForge.net noreply at sourceforge.net
Wed May 12 19:41:47 CEST 2004


Bugs item #952723, was opened at 2004-05-12 19:41
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=418820&aid=952723&group_id=37116

Category: None
Group: All Games
Status: Open
Resolution: None
Priority: 5
Submitted By: Bodo Meissner (bomm)
Assigned to: Nobody/Anonymous (nobody)
Summary: text speed should not be limited to 90

Initial Comment:
When changing text speed with + and - keys it is not possible to make it as slow as I want.
It is possible to select a very slow speed with the talkspeed keyword in the config file, but when I accidentally hit the - key, the speed will be set to the slowest value I can select with the keys.

I think the following code in scumm/scummvm.cpp is responsble for this:

        } else if (_lastKeyHit == '-') { // - text speed down
                _defaultTalkDelay += 5;
                if (_defaultTalkDelay > 90)
                        _defaultTalkDelay = 90;
                                                                                
I would like to have a much higher limit as I used values 200 or 300 in the config files for children who need much time for reading because they just learned to read.

A useful limit could be 500 or 1000.

A new key in the config file, e.g. maxtalkspeed=500, with the current limit of 90 as default value would be nice.


Bodo

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=418820&aid=952723&group_id=37116




More information about the Scummvm-tracker mailing list