Set plugin stack reserve size

Set it to that of the game exe.
This commit is contained in:
Kawe Mazidjatari 2023-05-13 19:38:32 +02:00
parent 04ed774c46
commit c96ca324c9

View File

@ -19,4 +19,8 @@ target_link_libraries( ${PROJECT_NAME} PRIVATE
"liblzham"
"protocol_pb"
"Rpcrt4.lib"
)
)
target_link_options( ${PROJECT_NAME} PRIVATE
"/STACK:8000000" # Match game executable stack reserve size
)