mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 19:58:53 +00:00
VideoCommon: add custom texture message to provide a dirty means of debugging whether custom textures are installed correctly
This commit is contained in:
parent
0dbe6392cf
commit
ad6ced6957
1 changed files with 11 additions and 0 deletions
|
@ -147,6 +147,17 @@ void HiresTexture::Update()
|
||||||
texture_directory);
|
texture_directory);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (g_ActiveConfig.bCacheHiresTextures)
|
||||||
|
{
|
||||||
|
OSD::AddMessage(fmt::format("Loading '{}' custom textures", s_hires_texture_cache.size()),
|
||||||
|
10000);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
OSD::AddMessage(
|
||||||
|
fmt::format("Found '{}' custom textures", s_hires_texture_id_to_arbmipmap.size()), 10000);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void HiresTexture::Clear()
|
void HiresTexture::Clear()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue