cooolbros / vscode-vdf

VDF/Valve KeyValues language support for VSCode
https://marketplace.visualstudio.com/items?itemName=pfwobcke.vscode-vdf
GNU General Public License v3.0
22 stars 4 forks source link

String values have a buffer size limit of 4096 (including null terminator) #29

Closed cooolbros closed 3 months ago

cooolbros commented 3 months ago

RunScriptCode and RunScriptFile in popfiles are likely to reach this limit

mtxfellen commented 3 months ago

C-strings are null terminated, so the limit should be set at 4095.

cooolbros commented 3 months ago

Thanks, I updated the title to be more accurate