byte swapping
All checks were successful
Linux arm64 / Build (push) Successful in 15s

This commit is contained in:
2025-06-26 14:43:27 +02:00
parent 10b49b34dd
commit 073872df94
11 changed files with 168 additions and 178 deletions

View File

@@ -11,7 +11,7 @@ File::IOInterface(const std::string& a_FilePath, unsigned int a_OpenMode) {
}
File::IOInterface(File&& other) :
m_FileOutput(std::move(other.m_FileOutput)), m_FileInput(std::move(other.m_FileInput)) {}
m_FileInput(std::move(other.m_FileInput)), m_FileOutput(std::move(other.m_FileOutput)) {}
DataBuffer File::Read(std::size_t a_Amount) {
DataBuffer buffer;