Fix bearbins comments
This commit is contained in:
parent
51b4584b42
commit
5ab650e4bb
@ -256,14 +256,10 @@ inline eBlockFace RotateBlockFaceCCW(eBlockFace a_BlockFace)
|
||||
{
|
||||
switch (a_BlockFace)
|
||||
{
|
||||
case BLOCK_FACE_XM:
|
||||
return BLOCK_FACE_ZP;
|
||||
case BLOCK_FACE_XP:
|
||||
return BLOCK_FACE_ZM;
|
||||
case BLOCK_FACE_ZM:
|
||||
return BLOCK_FACE_XM;
|
||||
case BLOCK_FACE_ZP:
|
||||
return BLOCK_FACE_XP;
|
||||
case BLOCK_FACE_XM: return BLOCK_FACE_ZP;
|
||||
case BLOCK_FACE_XP: return BLOCK_FACE_ZM;
|
||||
case BLOCK_FACE_ZM: return BLOCK_FACE_XM;
|
||||
case BLOCK_FACE_ZP: return BLOCK_FACE_XP;
|
||||
case BLOCK_FACE_NONE:
|
||||
case BLOCK_FACE_YM:
|
||||
case BLOCK_FACE_YP:
|
||||
|
Loading…
Reference in New Issue
Block a user