diff options
| author | Nicola Mettifogo | 2009-01-20 12:47:39 +0000 | 
|---|---|---|
| committer | Nicola Mettifogo | 2009-01-20 12:47:39 +0000 | 
| commit | b2a9393eeebb5b24f1d70cf163c21ef9c0ccd4c5 (patch) | |
| tree | 847049ce7588a8f73805edf0ddbcc7149064c4b5 | |
| parent | cd952a7c2790725a495a0e1ff4c4b9b164dccd40 (diff) | |
| download | scummvm-rg350-b2a9393eeebb5b24f1d70cf163c21ef9c0ccd4c5.tar.gz scummvm-rg350-b2a9393eeebb5b24f1d70cf163c21ef9c0ccd4c5.tar.bz2 scummvm-rg350-b2a9393eeebb5b24f1d70cf163c21ef9c0ccd4c5.zip | |
Replacement an immediate with the appropriate #define constant.
svn-id: r35950
| -rw-r--r-- | engines/parallaction/parser_ns.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/engines/parallaction/parser_ns.cpp b/engines/parallaction/parser_ns.cpp index d9073588ec..22087b8422 100644 --- a/engines/parallaction/parser_ns.cpp +++ b/engines/parallaction/parser_ns.cpp @@ -813,7 +813,7 @@ Dialogue *LocationParser_ns::parseDialogue() {  	Dialogue *dialogue = new Dialogue;  	assert(dialogue); -	Table forwards(40); +	Table forwards(NUM_QUESTIONS);  	_script->readLineToken(true); | 
