mirror of
				https://github.com/yuzu-emu/yuzu.git
				synced 2025-11-04 12:13:42 +00:00 
			
		
		
		
	Citra_QT : Fix Conversion Warnings
This commit is contained in:
		
							parent
							
								
									71be5853e0
								
							
						
					
					
						commit
						3c802b06e9
					
				@ -168,7 +168,7 @@ GPUCommandListModel::GPUCommandListModel(QObject* parent) : QAbstractListModel(p
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
int GPUCommandListModel::rowCount(const QModelIndex& parent) const {
 | 
			
		||||
    return pica_trace.writes.size();
 | 
			
		||||
    return static_cast<int>(pica_trace.writes.size());
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
int GPUCommandListModel::columnCount(const QModelIndex& parent) const {
 | 
			
		||||
 | 
			
		||||
@ -74,7 +74,7 @@ int ProfilerModel::rowCount(const QModelIndex& parent) const
 | 
			
		||||
    if (parent.isValid()) {
 | 
			
		||||
        return 0;
 | 
			
		||||
    } else {
 | 
			
		||||
        return results.time_per_category.size() + 2;
 | 
			
		||||
        return static_cast<int>(results.time_per_category.size() + 2);
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user