Increase filename buffer length

The mapeditor filedialog is big enough to show longer filenames than 20 characters.
This commit is contained in:
Asdow
2024-12-23 20:45:48 +02:00
parent c88fbbe749
commit eb7837bc3e
+1 -1
View File
@@ -1,7 +1,7 @@
#include "BuildDefines.h"
#include "Fileman.h"
#define FILENAME_BUFLEN (20 + 4 + 1)//dnl ch39 190909 +4 is for ".dat", +1 is for '\0' //dnl ch81 021213
#define FILENAME_BUFLEN (30 + 4 + 1)//dnl ch39 190909 +4 is for ".dat", +1 is for '\0' //dnl ch81 021213
#ifdef JA2EDITOR