mirror of
				https://github.com/zenorogue/hyperrogue.git
				synced 2025-10-31 14:02:59 +00:00 
			
		
		
		
	Remove extraneous semicolons to quiet pedantic GCC warnings.
This commit is contained in:
		| @@ -136,7 +136,7 @@ struct raycaster : glhr::GLprogram { | ||||
|  | ||||
| shared_ptr<raycaster> our_raycaster; | ||||
|  | ||||
| EX void reset_raycaster() { our_raycaster = nullptr; }; | ||||
| EX void reset_raycaster() { our_raycaster = nullptr; } | ||||
|  | ||||
| int deg; | ||||
|  | ||||
| @@ -846,7 +846,7 @@ array<float, 2> enc(int i, int a) { | ||||
|   res[0] = ((i%per_row) * deg + a + .5) / length; | ||||
|   res[1] = ((i / per_row) + .5) / rows; | ||||
|   return res; | ||||
|   }; | ||||
|   } | ||||
|  | ||||
| color_t color_out_of_range = 0x0F0800FF; | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Arthur O'Dwyer
					Arthur O'Dwyer