mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-23 23:45:46 +00:00
decoders: correct block calculation
This commit is contained in:
parent
3dd7643214
commit
7232a1ed16
7 changed files with 41 additions and 29 deletions
|
@ -39,15 +39,15 @@ struct Registers {
|
|||
}
|
||||
|
||||
u32 BlockWidth() const {
|
||||
return block_width;
|
||||
return block_width.Value();
|
||||
}
|
||||
|
||||
u32 BlockHeight() const {
|
||||
return block_height;
|
||||
return block_height.Value();
|
||||
}
|
||||
|
||||
u32 BlockDepth() const {
|
||||
return block_depth;
|
||||
return block_depth.Value();
|
||||
}
|
||||
} dest;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue