mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-05 23:09:04 +00:00
Fixed: Don't compress textures in DXTC when used as buttons
This commit is contained in:
parent
3250ae42b2
commit
f21467c466
1 changed files with 3 additions and 3 deletions
|
@ -258,19 +258,19 @@ void CCtrlButton::updateCoords()
|
|||
// ----------------------------------------------------------------------------
|
||||
void CCtrlButton::setTexture(const std::string&name)
|
||||
{
|
||||
_TextureIdNormal.setTexture(name.c_str (), 0, 0, 0, 0, false);
|
||||
_TextureIdNormal.setTexture(name.c_str (), 0, 0, -1, -1, false);
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
void CCtrlButton::setTexturePushed(const std::string&name)
|
||||
{
|
||||
_TextureIdPushed.setTexture(name.c_str (), 0, 0, 0, 0, false);
|
||||
_TextureIdPushed.setTexture(name.c_str (), 0, 0, -1, -1, false);
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
void CCtrlButton::setTextureOver(const std::string&name)
|
||||
{
|
||||
_TextureIdOver.setTexture(name.c_str (), 0, 0, 0, 0, false);
|
||||
_TextureIdOver.setTexture(name.c_str (), 0, 0, -1, -1, false);
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in a new issue