mirror of
https://github.com/wolfpld/tracy
synced 2025-05-08 16:03:53 +00:00
Fix signed/unsigned mismatch.
This commit is contained in:
parent
6bbed5db82
commit
c044884dd9
@ -2155,7 +2155,7 @@ void View::DrawZones()
|
|||||||
// gpu zones
|
// gpu zones
|
||||||
if( m_drawGpuZones )
|
if( m_drawGpuZones )
|
||||||
{
|
{
|
||||||
for( int i=0; i<m_gpuData.size(); i++ )
|
for( size_t i=0; i<m_gpuData.size(); i++ )
|
||||||
{
|
{
|
||||||
auto& v = m_gpuData[i];
|
auto& v = m_gpuData[i];
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user