mirror of
https://github.com/godotengine/godot.git
synced 2026-01-05 06:11:29 +03:00
Forgot to correct the ERR_FAIL_COND_V.
This commit is contained in:
@@ -71,7 +71,7 @@ String RegEx::get_capture(int capture) const {
|
||||
|
||||
int RegEx::get_capture_start(int capture) const {
|
||||
|
||||
ERR_FAIL_COND_V( get_capture_count() <= capture, String() );
|
||||
ERR_FAIL_COND_V( get_capture_count() <= capture, -1 );
|
||||
|
||||
return captures[capture].start;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user