Skip to content

Commit

Permalink
UPBGE: Fix bge.texture module name.
Browse files Browse the repository at this point in the history
  • Loading branch information
panzergame committed Jan 23, 2017
1 parent 5a72f50 commit 58744db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/gameengine/Ketsji/KX_PythonInit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1980,7 +1980,7 @@ PyMODINIT_FUNC initBGE()
addSubModule(modules, mod, initGameLogicPythonBinding(), "bge.logic");
addSubModule(modules, mod, initRasterizerPythonBinding(), "bge.render");
addSubModule(modules, mod, initGameTypesPythonBinding(), "bge.types");
addSubModule(modules, mod, initVideoTexturePythonBinding(), "bge.textures");
addSubModule(modules, mod, initVideoTexturePythonBinding(), "bge.texture");

return mod;
}
Expand Down

0 comments on commit 58744db

Please sign in to comment.