wall now uses terrain tileset

Former-commit-id: 13b5389d905c1c302ec4e7991fbfdd06ed333814
Former-commit-id: 1416055d9aa0755147c461512f9b638e25df908e
This commit is contained in:
Song Minjae
2017-01-09 22:56:15 +09:00
parent 073031983b
commit a0569f79d7
17 changed files with 72 additions and 50 deletions

View File

@@ -99,7 +99,7 @@ final public class FastMath {
* @param number The number to obtain the POT for.
* @return The next power of two.
*/
public static int nearestPowerOfTwo(int number) {
public static int nextPowerOfTwo(int number) {
number--;
number |= number >> 1;
number |= number >> 2;