Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #12062 from iwubcode/custom_textures_debug
VideoCommon: add startup message to know if custom textures are installed
  • Loading branch information
AdmiralCurtiss committed Jul 23, 2023
2 parents 3d9bc85 + fd74244 commit e3ef3cb
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Source/Core/VideoCommon/HiresTextures.cpp
Expand Up @@ -147,6 +147,17 @@ void HiresTexture::Update()
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()
Expand Down

0 comments on commit e3ef3cb

Please sign in to comment.