mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-04-20 11:35:45 +00:00
fix for Linux compilation (#416)
This commit is contained in:
parent
3d0fdf11f0
commit
2ba3221fc9
1 changed files with 2 additions and 1 deletions
|
@ -766,7 +766,8 @@ struct Liverpool {
|
|||
}
|
||||
|
||||
TilingMode GetTilingMode() const {
|
||||
return info.linear_general ? TilingMode::Display_Linear : attrib.tile_mode_index;
|
||||
return info.linear_general ? TilingMode::Display_Linear
|
||||
: attrib.tile_mode_index.Value();
|
||||
}
|
||||
|
||||
bool IsTiled() const {
|
||||
|
|
Loading…
Add table
Reference in a new issue