mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-18 09:24:58 +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 {
|
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 {
|
bool IsTiled() const {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue