Rotate around entity center, update math notation

Change #define math functions to uppercase for consistency
This commit is contained in:
2016-07-14 23:15:42 +10:00
parent b1875077b7
commit 0551f05e73
4 changed files with 29 additions and 13 deletions
+1 -1
View File
@@ -257,7 +257,7 @@ const i32 asset_loadTTFont(AssetManager *assetManager, const char *filePath)
}
#endif
i32 bitmapSize = squared(TARGET_TEXTURE_SIZE) * TARGET_BYTES_PER_PIXEL;
i32 bitmapSize = SQUARED(TARGET_TEXTURE_SIZE) * TARGET_BYTES_PER_PIXEL;
u32 *fontBitmap = PLATFORM_MEM_ALLOC(bitmapSize, u32);
const i32 pitch = MAX_TEXTURE_SIZE * TARGET_BYTES_PER_PIXEL;