Add .dat and .csv to whitelisted file extensions

This commit is contained in:
Louis-Antoine 2020-01-24 17:51:20 +01:00
parent 1b6d056b91
commit 8e92f3829c

View file

@ -36,11 +36,13 @@
static const char *const fnames[] = {"input", "output"}; static const char *const fnames[] = {"input", "output"};
static const char *whitelist[] = { // Allow scripters to write files of these types to SRB2's folder static const char *whitelist[] = { // Allow scripters to write files of these types to SRB2's folder
".txt", ".bmp",
".sav2",
".cfg", ".cfg",
".csv",
".dat",
".png", ".png",
".bmp" ".sav2",
".txt",
}; };