mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-28 18:45:54 -05:00
Merge pull request #95 from dariomanesku/master
Fixing a small typo bug.
This commit is contained in:
commit
fcd828810e
1 changed files with 1 additions and 1 deletions
|
@ -1990,7 +1990,7 @@ namespace bgfx
|
||||||
height = bx::uint32_max(1, height);
|
height = bx::uint32_max(1, height);
|
||||||
depth = bx::uint32_max(1, depth);
|
depth = bx::uint32_max(1, depth);
|
||||||
|
|
||||||
size += _width*_height*depth*bpp/8;
|
size += width*height*depth*bpp/8;
|
||||||
|
|
||||||
width >>= 1;
|
width >>= 1;
|
||||||
height >>= 1;
|
height >>= 1;
|
||||||
|
|
Loading…
Reference in a new issue