mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	Remove the fancy RegisterSet class introduced in 4c2bff61e.
				
					
				
			While it was some nice and fancy template usage, it ultimately had many practical issues regarding length of involved expressions under regular usage as well as common code completion tools not being able to handle the structures. Instead, we now use a more conventional approach which is a lot more clean to use.
This commit is contained in:
		
							parent
							
								
									29365e67d6
								
							
						
					
					
						commit
						9c781a6c76
					
				
					 9 changed files with 383 additions and 422 deletions
				
			
		|  | @ -83,7 +83,7 @@ QVariant GPUCommandListModel::data(const QModelIndex& index, int role) const | |||
|         if (role == Qt::DisplayRole) { | ||||
|             QString content; | ||||
|             if (index.column() == 0) { | ||||
|                 content = Pica::command_names[header.cmd_id]; | ||||
|                 content = QString::fromLatin1(Pica::Regs::GetCommandName(header.cmd_id).c_str()); | ||||
|                 content.append(" "); | ||||
|             } else if (index.column() == 1) { | ||||
|                 for (int j = 0; j < cmd.size(); ++j) | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue