Skip to content

Commit

Permalink
Update core/core_bind.cpp
Browse files Browse the repository at this point in the history
Co-authored-by: Adam Scott <[email protected]>
  • Loading branch information
YYF233333 and adamscott authored Feb 4, 2025
1 parent 6601eb7 commit b910fb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/core_bind.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ bool OS::is_restart_on_exit_set() const {
Vector<String> OS::get_restart_on_exit_arguments() const {
List<String> args = ::OS::get_singleton()->get_restart_on_exit_arguments();
Vector<String> args_vector;
for (const String &E : args) {
for (const String &arg : args) {
args_vector.push_back(E);
}

Expand Down

0 comments on commit b910fb8

Please sign in to comment.