mirror of
				https://github.com/zenorogue/hyperrogue.git
				synced 2025-10-31 14:02:59 +00:00 
			
		
		
		
	fixed some warnings in RogueViz
This commit is contained in:
		| @@ -61,7 +61,7 @@ splitter split(string s) { | ||||
|     if(c == 'd') add(swapped ? s1 : s0, 'b'); | ||||
|     if(c == 'a') swapped = !swapped; | ||||
|     } | ||||
|   return {swapped, s0, s1}; | ||||
|   return splitter{swapped, s0, s1}; | ||||
|   } | ||||
|  | ||||
| splitter split_slow(string s) { | ||||
| @@ -73,7 +73,7 @@ splitter split_slow(string s) { | ||||
|     if(c == 'd') ((swapped ? s1 : s0) += 'b'), ((swapped ? s0 : s1) += '-'); | ||||
|     if(c == 'a') swapped = !swapped, s0 += '-', s1 += '-'; | ||||
|     } | ||||
|   return {swapped, s0, s1}; | ||||
|   return splitter{swapped, s0, s1}; | ||||
|   } | ||||
|  | ||||
| string reduce(const string& x) { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Zeno Rogue
					Zeno Rogue