use correct constant

This commit is contained in:
Ted John 2016-04-22 18:37:04 +01:00
parent 3992ca22e4
commit bed916e4aa
1 changed files with 1 additions and 1 deletions

View File

@ -510,5 +510,5 @@ uint32 get_file_extension_type(const utf8 *path)
if (strcicmp(extension, ".sc6") == 0) return FILE_EXTENSION_SC6;
if (strcicmp(extension, ".sv6") == 0) return FILE_EXTENSION_SV6;
if (strcicmp(extension, ".td6") == 0) return FILE_EXTENSION_TD6;
return FILE_TYPE_UNKNOWN;
return FILE_EXTENSION_UNKNOWN;
}