diff options
| author | Johannes Schickel | 2012-02-22 20:20:55 +0100 | 
|---|---|---|
| committer | Johannes Schickel | 2012-02-22 20:20:55 +0100 | 
| commit | 442bcb7d3eb64f3fbde3ee5bd2b16e7c01bae469 (patch) | |
| tree | 1414c9fd07408159d7457dc6ee3818725279d6d0 /graphics/cursorman.cpp | |
| parent | dac6ac66ad0a5ce0d99e089dacad1d72929d0f42 (diff) | |
| download | scummvm-rg350-442bcb7d3eb64f3fbde3ee5bd2b16e7c01bae469.tar.gz scummvm-rg350-442bcb7d3eb64f3fbde3ee5bd2b16e7c01bae469.tar.bz2 scummvm-rg350-442bcb7d3eb64f3fbde3ee5bd2b16e7c01bae469.zip | |
ALL: Fix some signed/unsigned comparison warnings.
Diffstat (limited to 'graphics/cursorman.cpp')
| -rw-r--r-- | graphics/cursorman.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/graphics/cursorman.cpp b/graphics/cursorman.cpp index 1d4e482bf4..425714ea34 100644 --- a/graphics/cursorman.cpp +++ b/graphics/cursorman.cpp @@ -31,10 +31,10 @@ DECLARE_SINGLETON(Graphics::CursorManager);  namespace Graphics {  CursorManager::~CursorManager() { -	for (int i = 0; i < _cursorStack.size(); ++i) +	for (Common::Stack<Cursor *>::size_type i = 0; i < _cursorStack.size(); ++i)  		delete _cursorStack[i];  	_cursorStack.clear(); -	for (int i = 0; i < _cursorPaletteStack.size(); ++i) +	for (Common::Stack<Palette *>::size_type i = 0; i < _cursorPaletteStack.size(); ++i)  		delete _cursorPaletteStack[i];  	_cursorPaletteStack.clear();  } | 
