diff options
| author | Jonathan Gray | 2003-10-09 14:05:09 +0000 | 
|---|---|---|
| committer | Jonathan Gray | 2003-10-09 14:05:09 +0000 | 
| commit | 0de202bfb4a53eee022ceae7d9cbb085ddd83d5f (patch) | |
| tree | 7bcf3ff8a36ddd3e523c2a0a784010069931d78d | |
| parent | 92997ec15ff1653b225c1ae0c73a5cb9dc94aab9 (diff) | |
| download | scummvm-rg350-0de202bfb4a53eee022ceae7d9cbb085ddd83d5f.tar.gz scummvm-rg350-0de202bfb4a53eee022ceae7d9cbb085ddd83d5f.tar.bz2 scummvm-rg350-0de202bfb4a53eee022ceae7d9cbb085ddd83d5f.zip | |
make gcc 2.95 -Wshadow happy (yes fingolfin its a broken compiler :)
svn-id: r10701
| -rw-r--r-- | backends/sdl/sdl-common.cpp | 18 | ||||
| -rw-r--r-- | base/gameDetector.cpp | 4 | 
2 files changed, 11 insertions, 11 deletions
| diff --git a/backends/sdl/sdl-common.cpp b/backends/sdl/sdl-common.cpp index 7bf5c21a8b..8dbc25e517 100644 --- a/backends/sdl/sdl-common.cpp +++ b/backends/sdl/sdl-common.cpp @@ -409,26 +409,26 @@ void OSystem_SDL_Common::add_dirty_rgn_auto(const byte *buf) {  }  void OSystem_SDL_Common::kbd_mouse() { -	uint32 time = get_msecs(); -	if (time >= km.last_time + km.delay_time) { -		km.last_time = time; +	uint32 curTime = get_msecs(); +	if (curTime >= km.last_time + km.delay_time) { +		km.last_time = curTime;  		if (km.x_down_count == 1) { -			km.x_down_time = time; +			km.x_down_time = curTime;  			km.x_down_count = 2;  		}  		if (km.y_down_count == 1) { -			km.y_down_time = time; +			km.y_down_time = curTime;  			km.y_down_count = 2;  		}  		if (km.x_vel || km.y_vel) {  			if (km.x_down_count) { -				if (time > km.x_down_time + km.delay_time * 12) { +				if (curTime > km.x_down_time + km.delay_time * 12) {  					if (km.x_vel > 0)  						km.x_vel++;  					else  						km.x_vel--; -				} else if (time > km.x_down_time + km.delay_time * 8) { +				} else if (curTime > km.x_down_time + km.delay_time * 8) {  					if (km.x_vel > 0)  						km.x_vel = 5;  					else @@ -436,12 +436,12 @@ void OSystem_SDL_Common::kbd_mouse() {  				}  			}  			if (km.y_down_count) { -				if (time > km.y_down_time + km.delay_time * 12) { +				if (curTime > km.y_down_time + km.delay_time * 12) {  					if (km.y_vel > 0)  						km.y_vel++;  					else  						km.y_vel--; -				} else if (time > km.y_down_time + km.delay_time * 8) { +				} else if (curTime > km.y_down_time + km.delay_time * 8) {  					if (km.y_vel > 0)  						km.y_vel = 5;  					else diff --git a/base/gameDetector.cpp b/base/gameDetector.cpp index e5884a55a3..476b14870b 100644 --- a/base/gameDetector.cpp +++ b/base/gameDetector.cpp @@ -668,9 +668,9 @@ OSystem *GameDetector::createSystem() {  #endif  } -Engine *GameDetector::createEngine(OSystem *system) { +Engine *GameDetector::createEngine(OSystem *sys) {  	assert(_plugin); -	return _plugin->createInstance(this, system); +	return _plugin->createInstance(this, sys);  }  int GameDetector::getMidiDriverType() { | 
