| 111 | } |
| 112 | |
| 113 | String FileAccessEncryptedCustom::get_path_absolute() const { |
| 114 | if (file.is_valid()) { |
| 115 | return file->get_path_absolute(); |
| 116 | } else { |
| 117 | return ""; |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | void FileAccessEncryptedCustom::seek(uint64_t p_position) { |
| 122 | if (p_position > get_length()) { |
no test coverage detected