mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu.git
				synced 2025-05-12 00:45:25 +00:00 
			
		
		
		
	Profiler: Fix off-by-one error when computing average.
This commit is contained in:
		
							parent
							
								
									52654842a0
								
							
						
					
					
						commit
						ed12b08e7a
					
				| @ -126,10 +126,9 @@ void TimingResultsAggregator::AddFrame(const ProfilingFrameResult& frame_result) | |||||||
| static AggregatedDuration AggregateField(const std::vector<Duration>& v, size_t len) { | static AggregatedDuration AggregateField(const std::vector<Duration>& v, size_t len) { | ||||||
|     AggregatedDuration result; |     AggregatedDuration result; | ||||||
|     result.avg = Duration::zero(); |     result.avg = Duration::zero(); | ||||||
| 
 |  | ||||||
|     result.min = result.max = (len == 0 ? Duration::zero() : v[0]); |     result.min = result.max = (len == 0 ? Duration::zero() : v[0]); | ||||||
| 
 | 
 | ||||||
|     for (size_t i = 1; i < len; ++i) { |     for (size_t i = 0; i < len; ++i) { | ||||||
|         Duration value = v[i]; |         Duration value = v[i]; | ||||||
|         result.avg += value; |         result.avg += value; | ||||||
|         result.min = std::min(result.min, value); |         result.min = std::min(result.min, value); | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Yuri Kunde Schlesner
						Yuri Kunde Schlesner