| 164 | } |
| 165 | |
| 166 | String FileAccessEncryptedv3::get_path_absolute() const { |
| 167 | if (file.is_valid()) { |
| 168 | return file->get_path_absolute(); |
| 169 | } else { |
| 170 | return ""; |
| 171 | } |
| 172 | } |
| 173 | |
| 174 | void FileAccessEncryptedv3::seek(uint64_t p_position) { |
| 175 | if (p_position > get_length()) { |
no test coverage detected