Skip to content

Commit bdcd9bc

Browse files
committed
Minor fix
1 parent 9badf42 commit bdcd9bc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/SceneGPU.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ inline Ray::TextureHandle Ray::NS::Scene::AddAtlasTexture_nolock(const tex_desc_
455455
}
456456
}
457457

458-
log_->Info("Ray: Texture '%s' loaded (atlas = %i, %ix%i)", _t.name, int(t.atlas), _t.w, _t.h);
458+
log_->Info("Ray: Texture '%s' loaded (atlas = %i, %ix%i)", _t.name.data(), int(t.atlas), _t.w, _t.h);
459459
log_->Info("Ray: Atlasses are (RGBA[%i], RGB[%i], RG[%i], R[%i], BC1[%i], BC3[%i], BC4[%i], BC5[%i])",
460460
tex_atlases_[0].page_count(), tex_atlases_[1].page_count(), tex_atlases_[2].page_count(),
461461
tex_atlases_[3].page_count(), tex_atlases_[4].page_count(), tex_atlases_[5].page_count(),
@@ -730,7 +730,7 @@ inline Ray::TextureHandle Ray::NS::Scene::AddBindlessTexture_nolock(const tex_de
730730

731731
temp_stage_buf.FreeImmediate();
732732

733-
log_->Info("Ray: Texture '%s' loaded (%ix%i)", _t.name, _t.w, _t.h);
733+
log_->Info("Ray: Texture '%s' loaded (%ix%i)", _t.name.data(), _t.w, _t.h);
734734

735735
assert(ret.first <= 0x00ffffff);
736736

0 commit comments

Comments
 (0)