Browse Source

Fix :trollface: typo

pull/133/head
Adam Johnson 5 years ago
parent
commit
cb54141af7
Signed by: Hoikas
GPG Key ID: 0B6515D6FF6F271E
  1. 2
      korlib/bumpmap.cpp

2
korlib/bumpmap.cpp

@ -35,7 +35,7 @@ extern "C" {
PyObject* create_bump_LUT(PyObject*, PyObject* args) {
static const int kLUTHeight = 16;
static const int kLUTWidth = 16;
static const int kBufSz = kLUTWidth * kLUTWidth * sizeof(uint32_t);
static const int kBufSz = kLUTWidth * kLUTHeight * sizeof(uint32_t);
pyMipmap* pymipmap;
if (!PyArg_ParseTuple(args, "O", &pymipmap)) {

Loading…
Cancel
Save