| 2933 | } |
| 2934 | |
| 2935 | String GDRESettings::get_recent_error_string(bool p_filter_backtraces) { |
| 2936 | if (p_filter_backtraces) { |
| 2937 | return String("\n").join(gdre::filter_error_backtraces(GDRESettings::get_errors())); |
| 2938 | } |
| 2939 | return String("\n").join(GDRESettings::get_errors()); |
| 2940 | } |
| 2941 | |
| 2942 | bool GDRESettings::main_iteration() { |
| 2943 | // For testing, we can't call Main::iteration() because Main hasn't been set up. |
no outgoing calls
no test coverage detected