Merge pull request #402 from RedGl0w/patch-4

[Python] Change heap (32 to 100K)
This commit is contained in:
Quentin
2020-11-13 20:50:22 +01:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -74,7 +74,7 @@ public:
VariableBoxController * variableBoxController() { return &m_variableBoxController; }
static constexpr int k_pythonHeapSize = 32768;
static constexpr int k_pythonHeapSize = 100000;
private:
/* Python delegate:

2
apps/external/app.h vendored
View File

@@ -29,7 +29,7 @@ private:
MainController m_mainController;
StackViewController m_stackViewController;
Window * m_window;
static constexpr int k_externalHeapSize = 80000;
static constexpr int k_externalHeapSize = 100000;
char m_externalHeap[k_externalHeapSize];
};