Return an error on Err_OldFile instead of falling through to default case

This commit is contained in:
Pavel Djundik 2015-07-30 15:59:01 +03:00
parent 6b1650ae4f
commit 79bb453bb6

View File

@ -173,6 +173,7 @@ int load_amxscript(AMX *amx, void **program, const char *filename, char error[64
return (amx->error = AMX_ERR_NOTFOUND);
case CAmxxReader::Err_OldFile:
strcpy(error, "Plugin uses deprecated format. Update compiler");
return (amx->error = AMX_ERR_FORMAT);
default:
strcpy(error, "Unknown error");
return (amx->error = AMX_ERR_NOTFOUND);