mirror of
https://github.com/cemu-project/Cemu.git
synced 2026-06-02 12:45:01 -06:00
UI: Fix formatting error in TextureRelationWindow (#1926)
This commit is contained in:
parent
a29a160b7c
commit
ca15637b63
@ -244,7 +244,7 @@ void TextureRelationViewerWindow::_setTextureRelationListItemTexture(wxListCtrl*
|
|||||||
uiList->SetItem(rowIndex, columnIndex, texInfo->mipLevels == 1 ? "1 mip" : wxString::Format("%d mips", texInfo->mipLevels));
|
uiList->SetItem(rowIndex, columnIndex, texInfo->mipLevels == 1 ? "1 mip" : wxString::Format("%d mips", texInfo->mipLevels));
|
||||||
columnIndex++;
|
columnIndex++;
|
||||||
// last access
|
// last access
|
||||||
uiList->SetItem(rowIndex, columnIndex, wxString::Format("%lus", (GetTickCount() - texInfo->lastAccessTick + 499) / 1000));
|
uiList->SetItem(rowIndex, columnIndex, wxString::Format("%uus", (GetTickCount() - texInfo->lastAccessTick + 499) / 1000));
|
||||||
columnIndex++;
|
columnIndex++;
|
||||||
// overwrite resolution
|
// overwrite resolution
|
||||||
wxString overwriteResLabel;
|
wxString overwriteResLabel;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user