diff options
author | Craig Robbins <kde.psych@gmail.com> | 2015-03-31 16:13:42 +1000 |
---|---|---|
committer | Craig Robbins <kde.psych@gmail.com> | 2015-03-31 16:24:25 +1000 |
commit | 862d4ea328ed30d79f4e28eb9119e21e275295d9 (patch) | |
tree | 7e6a41fbd7c54acbbb97bf60f19fe0af46b11803 /src/constants.h | |
parent | ed10005d381580440558dc49277b4d350f081283 (diff) | |
download | minetest-862d4ea328ed30d79f4e28eb9119e21e275295d9.tar.gz minetest-862d4ea328ed30d79f4e28eb9119e21e275295d9.tar.bz2 minetest-862d4ea328ed30d79f4e28eb9119e21e275295d9.zip |
Change format of screenshot names
Filename screenshot_ + ISO 8601 format + [-serial]
i.e. screenshot_YYYY-MM-DDTHH::MM::SS[-serial].png
Serial is added if the filename + timestamp already exists and is in the range 1 to 999
Diffstat (limited to 'src/constants.h')
-rw-r--r-- | src/constants.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/constants.h b/src/constants.h index d7163bf68..22cadc5a8 100644 --- a/src/constants.h +++ b/src/constants.h @@ -97,6 +97,12 @@ with this program; if not, write to the Free Software Foundation, Inc., // TODO: Use case-insensitive player names instead of this hack. #define PLAYER_FILE_ALTERNATE_TRIES 1000 +// For screenshots a serial number is appended to the filename + datetimestamp +// if filename + datetimestamp is not unique. +// This is the maximum number of attempts to try and add a serial to the end of +// the file attempting to ensure a unique filename +#define SCREENSHOT_MAX_SERIAL_TRIES 1000 + /* GUI related things */ |