| 556 | } |
| 557 | |
| 558 | Error FileAccessGDRE::get_error() const { |
| 559 | ERR_FAIL_COND_V_MSG(proxy.is_null(), ERR_FILE_NOT_FOUND, "File must be opened before use."); |
| 560 | return proxy->get_error(); |
| 561 | } |
| 562 | |
| 563 | Error FileAccessGDRE::resize(int64_t p_length) { |
| 564 | ERR_FAIL_COND_V_MSG(proxy.is_null(), ERR_FILE_NOT_FOUND, "File must be opened before use."); |