1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-06 06:32:56 +01:00

Remove const

This commit is contained in:
X123M3-256
2017-01-17 22:23:08 +00:00
committed by Ted John
parent d89fc32864
commit 7d2490710c

View File

@@ -662,7 +662,7 @@ sint32 cmdline_for_sprite(const char **argv, sint32 argc)
const char *spriteFilePath = argv[1];
const char *spriteDescriptionPath = argv[2];
const char* directoryPath = path_get_directory(argv[1]);
char* directoryPath = path_get_directory(argv[1]);
json_error_t error;
json_t* sprite_list=json_load_file(spriteDescriptionPath, JSON_REJECT_DUPLICATES, &error);