diff options
| author | D G Turner | 2012-11-30 12:45:26 +0000 | 
|---|---|---|
| committer | D G Turner | 2012-11-30 12:45:26 +0000 | 
| commit | 541c43992f370a2d5c00c9e2c96e49ce888fc403 (patch) | |
| tree | bc6c19d5dff36eb359fede9a2f6ce877bb9d429e | |
| parent | 617f6179c1b96a1d2f8209dac8a3bf23da2415de (diff) | |
| download | scummvm-rg350-541c43992f370a2d5c00c9e2c96e49ce888fc403.tar.gz scummvm-rg350-541c43992f370a2d5c00c9e2c96e49ce888fc403.tar.bz2 scummvm-rg350-541c43992f370a2d5c00c9e2c96e49ce888fc403.zip | |
DRASCULA: Change loop variable to uint, rather than size_t.
| -rw-r--r-- | engines/drascula/detection.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/engines/drascula/detection.cpp b/engines/drascula/detection.cpp index 760d8b7d98..598af5acff 100644 --- a/engines/drascula/detection.cpp +++ b/engines/drascula/detection.cpp @@ -305,7 +305,7 @@ public:  		Common::String saveDesc;  		SaveStateList saveList;  		int line = 1; -		for (size_t i = 0; i < slots.size(); i++) { +		for (uint i = 0; i < slots.size(); i++) {  			// ignore lines corresponding to unused saveslots  			for (; line < slots[i]; line++)  				epa->readLine(); | 
