Altered the rotates for cBlockSignHandler. The functions as a whole is still unfinished though; no wall sign or mirroring support yet.
This commit is contained in:
parent
90415ff798
commit
6553c8ff44
@ -75,13 +75,13 @@ public:
|
||||
|
||||
virtual NIBBLETYPE MetaRotateCW(NIBBLETYPE a_Meta) override
|
||||
{
|
||||
return ++a_Meta;
|
||||
return (++a_Meta) & 0x0F;
|
||||
}
|
||||
|
||||
|
||||
virtual NIBBLETYPE MetaRotateCCW(NIBBLETYPE a_Meta) override
|
||||
{
|
||||
return --a_Meta;
|
||||
return (--a_Meta) & 0x0F;
|
||||
}
|
||||
} ;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user