Fixes #2472: Off by when selecting texture for channels >= 5.
This commit is contained in:
parent
eac94ac6b7
commit
c427fa04a7
1 changed files with 2 additions and 2 deletions
|
@ -75,9 +75,9 @@ public class SmartCableTextures
|
|||
{
|
||||
return textures[5];
|
||||
}
|
||||
else if( channels <= 9 )
|
||||
else if( channels <= 8 )
|
||||
{
|
||||
return textures[channels];
|
||||
return textures[1 + channels];
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue