Skip to content

Commit

Permalink
UPBGE: Fix commented LibLoad async option.
Browse files Browse the repository at this point in the history
  • Loading branch information
panzergame committed May 24, 2017
1 parent 2926cc6 commit d09038c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/gameengine/Ketsji/KX_PythonInit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -645,8 +645,8 @@ static PyObject *gLibLoad(PyObject *, PyObject *args, PyObject *kwds)
options |= KX_BlenderConverter::LIB_LOAD_VERBOSE;
if (load_scripts != 0)
options |= KX_BlenderConverter::LIB_LOAD_LOAD_SCRIPTS;
// if (async != 0)
// options |= KX_BlenderConverter::LIB_LOAD_ASYNC;
if (async != 0)
options |= KX_BlenderConverter::LIB_LOAD_ASYNC;

KX_BlenderConverter *converter = KX_GetActiveEngine()->GetConverter();

Expand Down

0 comments on commit d09038c

Please sign in to comment.