mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	citra-qt: static-constify a map.
This commit is contained in:
		
							parent
							
								
									2b0d7a1d29
								
							
						
					
					
						commit
						8cd0d9c000
					
				
					 1 changed files with 7 additions and 6 deletions
				
			
		|  | @ -39,15 +39,16 @@ QVariant BreakPointModel::data(const QModelIndex& index, int role) const | |||
|         switch (index.column()) { | ||||
|         case 0: | ||||
|         { | ||||
|             std::map<Pica::DebugContext::Event, QString> map; | ||||
|             map.insert({Pica::DebugContext::Event::CommandLoaded, tr("Pica command loaded")}); | ||||
|             map.insert({Pica::DebugContext::Event::CommandProcessed, tr("Pica command processed")}); | ||||
|             map.insert({Pica::DebugContext::Event::IncomingPrimitiveBatch, tr("Incoming primitive batch")}); | ||||
|             map.insert({Pica::DebugContext::Event::FinishedPrimitiveBatch, tr("Finished primitive batch")}); | ||||
|             static const std::map<Pica::DebugContext::Event, QString> map = { | ||||
|                 { Pica::DebugContext::Event::CommandLoaded, tr("Pica command loaded") }, | ||||
|                 { Pica::DebugContext::Event::CommandProcessed, tr("Pica command processed") }, | ||||
|                 { Pica::DebugContext::Event::IncomingPrimitiveBatch, tr("Incoming primitive batch") }, | ||||
|                 { Pica::DebugContext::Event::FinishedPrimitiveBatch, tr("Finished primitive batch") }, | ||||
|             }; | ||||
| 
 | ||||
|             _dbg_assert_(Debug_GPU, map.size() == static_cast<size_t>(Pica::DebugContext::Event::NumEvents)); | ||||
| 
 | ||||
|             return map[event]; | ||||
|             return (map.find(event) != map.end()) ? map.at(event) : QString(); | ||||
|         } | ||||
| 
 | ||||
|         case 1: | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue