diff options
| author | Max Horn | 2010-03-18 15:54:40 +0000 | 
|---|---|---|
| committer | Max Horn | 2010-03-18 15:54:40 +0000 | 
| commit | cac0ac66e22d18a57958ef342e6b115e35197e90 (patch) | |
| tree | 1fef12f458e84cdba353bd9b3ef45e3d00a63a16 /engines/sci/engine/kernel32.cpp | |
| parent | 81a698d0a0a52115088825523950047d135b0ca0 (diff) | |
| download | scummvm-rg350-cac0ac66e22d18a57958ef342e6b115e35197e90.tar.gz scummvm-rg350-cac0ac66e22d18a57958ef342e6b115e35197e90.tar.bz2 scummvm-rg350-cac0ac66e22d18a57958ef342e6b115e35197e90.zip | |
COMMON: Get rid of Common::StringList
svn-id: r48287
Diffstat (limited to 'engines/sci/engine/kernel32.cpp')
| -rw-r--r-- | engines/sci/engine/kernel32.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/engines/sci/engine/kernel32.cpp b/engines/sci/engine/kernel32.cpp index 382200355d..9d3b80a5ae 100644 --- a/engines/sci/engine/kernel32.cpp +++ b/engines/sci/engine/kernel32.cpp @@ -375,7 +375,7 @@ enum {  };  void Kernel::setKernelNamesSci2() { -	_kernelNames = Common::StringList(sci2_default_knames, kKernelEntriesSci2); +	_kernelNames = Common::StringArray(sci2_default_knames, kKernelEntriesSci2);  }  void Kernel::setKernelNamesSci21(EngineState *s) { @@ -387,13 +387,13 @@ void Kernel::setKernelNamesSci21(EngineState *s) {  	// they would not be compatible with other games of the same interpreter.  	if (g_sci->_features->detectSci21KernelType() == SCI_VERSION_2) { -		_kernelNames = Common::StringList(sci2_default_knames, kKernelEntriesGk2Demo); +		_kernelNames = Common::StringArray(sci2_default_knames, kKernelEntriesGk2Demo);  		// OnMe is IsOnMe here, but they should be compatible  		_kernelNames[0x23] = "Robot"; // Graph in SCI2  		_kernelNames[0x2e] = "Priority"; // DisposeTextBitmap in SCI2  	} else {  		// TODO: Differentiate between SCI2.1/3 -		_kernelNames = Common::StringList(sci21_default_knames, kKernelEntriesSci3); +		_kernelNames = Common::StringArray(sci21_default_knames, kKernelEntriesSci3);  	}  } | 
