mirror of
https://github.com/dingusdev/dingusppc.git
synced 2026-04-20 02:17:23 +00:00
blockstoragedevice.h: fix indentation.
This commit is contained in:
@@ -50,20 +50,20 @@ public:
|
||||
protected:
|
||||
void fill_cache(const int nblocks);
|
||||
|
||||
ImgFile img_file;
|
||||
uint64_t size_bytes = 0; // image file size in bytes
|
||||
uint64_t size_blocks = 0; // image file size in blocks
|
||||
uint64_t max_blocks = 0; // maximum number of blocks supported
|
||||
uint64_t cur_fpos = 0; // current image file pointer position
|
||||
uint64_t write_size = 0; // number of bytes to write next
|
||||
uint32_t block_size = 512; // physical block size
|
||||
uint32_t raw_blk_size = 512; // block size for raw images (CD-ROM)
|
||||
uint32_t data_offset = 0; // offset to block data for raw images
|
||||
uint32_t cache_blocks = 0;
|
||||
uint32_t cache_size = 0; // cache size
|
||||
uint32_t remain_size = 0;
|
||||
bool is_writeable = false;
|
||||
bool is_ready = false; // ready for operation
|
||||
ImgFile img_file;
|
||||
uint64_t size_bytes = 0; // image file size in bytes
|
||||
uint64_t size_blocks = 0; // image file size in blocks
|
||||
uint64_t max_blocks = 0; // maximum number of blocks supported
|
||||
uint64_t cur_fpos = 0; // current image file pointer position
|
||||
uint64_t write_size = 0; // number of bytes to write next
|
||||
uint32_t block_size = 512; // physical block size
|
||||
uint32_t raw_blk_size = 512; // block size for raw images (CD-ROM)
|
||||
uint32_t data_offset = 0; // offset to block data for raw images
|
||||
uint32_t cache_blocks = 0;
|
||||
uint32_t cache_size = 0; // cache size
|
||||
uint32_t remain_size = 0;
|
||||
bool is_writeable = false;
|
||||
bool is_ready = false; // ready for operation
|
||||
|
||||
std::unique_ptr<char[]> data_cache;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user