mirror of
				https://github.com/zenorogue/hyperrogue.git
				synced 2025-11-04 07:43:02 +00:00 
			
		
		
		
	drawFlashes no longer tries to draw a flash in a gmatrix-less position
This commit is contained in:
		@@ -4999,7 +4999,8 @@ void drawMarkers() {
 | 
			
		||||
void drawFlashes() {
 | 
			
		||||
  for(int k=0; k<size(flashes); k++) {
 | 
			
		||||
    flashdata& f = flashes[k];
 | 
			
		||||
    transmatrix V = gmatrix[f.where];
 | 
			
		||||
    transmatrix V;
 | 
			
		||||
    try { V = gmatrix.at(f.where); } catch(out_of_range) { continue; }    
 | 
			
		||||
    int tim = ticks - f.t;
 | 
			
		||||
    
 | 
			
		||||
    bool kill = tim > f.size;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user