big endian fix

This commit is contained in:
zanostro 2025-12-05 18:03:48 +01:00
parent f98e4b323c
commit 1fb7d52842
4 changed files with 73 additions and 37 deletions

View file

@ -13,7 +13,10 @@ public:
void write(unsigned char value) override;
private:
void ensureFileOpen();
std::fstream fileStream;
std::string filename;
bool fileCreated;
};
#endif // FILE_DEVICE_H