Browse Source

Increase the love.graphics max stack depth from 64 to 128.

--HG--
branch : minor
Alex Szpakowski 7 years ago
parent
commit
fccc6fa733
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/modules/graphics/Graphics.h

+ 1 - 1
src/modules/graphics/Graphics.h

@@ -942,7 +942,7 @@ protected:
 
 
 	Deprecations deprecations;
 	Deprecations deprecations;
 
 
-	static const size_t MAX_USER_STACK_DEPTH = 64;
+	static const size_t MAX_USER_STACK_DEPTH = 128;
 	static const int MAX_TEMPORARY_CANVAS_UNUSED_FRAMES = 16;
 	static const int MAX_TEMPORARY_CANVAS_UNUSED_FRAMES = 16;
 
 
 private:
 private: