applied Jukka's patch
This commit is contained in:
		
							
								
								
									
										4
									
								
								tile.c
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								tile.c
									
									
									
									
									
								
							| @@ -16,7 +16,9 @@ addtomwfact(const char *arg) { | ||||
| 		return; | ||||
|  | ||||
| 	/* arg handling, manipulate mwfact */ | ||||
| 	if(arg && (1 == sscanf(arg, "%lf", &delta))) { | ||||
| 	if(arg == NULL) | ||||
| 		mwfact = MWFACT; | ||||
| 	else if(1 == sscanf(arg, "%lf", &delta)) { | ||||
| 		if(delta + mwfact > 0.1 && delta + mwfact < 0.9) | ||||
| 			mwfact += delta; | ||||
| 	} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user