Skip to content

Commit

Permalink
Fix unhandled PROPERTY_HINT_NO_NODEPATH warning
Browse files Browse the repository at this point in the history
Due to upstream change:

	godotengine/godot@6f7525c
  • Loading branch information
Rubonnek committed Jan 2, 2025
1 parent 9525eff commit dd150f4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions util/limbo_utility.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,9 @@ String LimboUtility::get_property_hint_text(PropertyHint p_hint) const {
case PROPERTY_HINT_ONESHOT: {
return "ONESHOT";
}
case PROPERTY_HINT_NO_NODEPATH: {
return "NO_NODEPATH";
}
case PROPERTY_HINT_LOCALE_ID: {
return "LOCALE_ID";
}
Expand Down

0 comments on commit dd150f4

Please sign in to comment.