Skip to content

Commit

Permalink
Change error message when receiving invalid custom format type in `_g…
Browse files Browse the repository at this point in the history
…et_vertex_to_custom_array_length_factor`
  • Loading branch information
Adrian-Samoticha committed Jun 24, 2024
1 parent b5e969e commit 8b46e58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion servers/rendering_server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1401,7 +1401,7 @@ int32_t RenderingServer::_get_vertex_to_custom_array_length_factor(uint32_t p_fo
return s;
} break;
default: {
ERR_FAIL_V_MSG(0, "Invalid texture type.");
ERR_FAIL_V_MSG(0, "Invalid custom format type.");
}
}
}
Expand Down

0 comments on commit 8b46e58

Please sign in to comment.