GSdx-TC: Adjust comment for PaletteMap when 8-bit texture is disabled.

Follow up to the requested comment changes at
https://github.com/PCSX2/pcsx2/pull/2681#pullrequestreview-174683105
This commit is contained in:
lightningterror 2018-11-17 21:38:35 +01:00
parent 0161c2838e
commit 11ddfefb60
1 changed files with 1 additions and 1 deletions

View File

@ -2045,7 +2045,7 @@ void GSTextureCache::SourceMap::RemoveAt(Source* s)
delete s;
}
// Query the PaletteMap for a valid Palette, then both its reference, clut copy pointer and eventually palette texture pointer to the Source object
// Query the PaletteMap for a valid Palette, then assign its reference, CLUT copy pointer and optionally its palette texture pointer to the Source object.
void GSTextureCache::AttachPaletteToSource(Source* s, uint16 pal, bool need_gs_texture)
{
std::shared_ptr<Palette> p = m_palette_map.LookupPalette(pal, need_gs_texture);