Removing unneeded arguments to copy(). Thanks to Andrew Hills.
This commit is contained in:
		
							parent
							
								
									462a966ee2
								
							
						
					
					
						commit
						42505c5215
					
				
							
								
								
									
										4
									
								
								st.c
								
								
								
								
							
							
						
						
									
										4
									
								
								st.c
								
								
								
								
							| 
						 | 
					@ -2059,7 +2059,7 @@ xdrawcursor(void) {
 | 
				
			||||||
	} else
 | 
						} else
 | 
				
			||||||
		xclear(oldx, oldy, oldx, oldy);
 | 
							xclear(oldx, oldy, oldx, oldy);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	xcopy(oldx, oldy, 1, 1);
 | 
						xcopy();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* draw the new one */
 | 
						/* draw the new one */
 | 
				
			||||||
	if(!(term.c.state & CURSOR_HIDE)) {
 | 
						if(!(term.c.state & CURSOR_HIDE)) {
 | 
				
			||||||
| 
						 | 
					@ -2074,7 +2074,7 @@ xdrawcursor(void) {
 | 
				
			||||||
		oldx = term.c.x, oldy = term.c.y;
 | 
							oldx = term.c.x, oldy = term.c.y;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	xcopy(term.c.x, term.c.y, 1, 1);
 | 
						xcopy();
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void
 | 
					void
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue