mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-01-06 07:06:00 +00:00
fix for Linux compilation (#416)
This commit is contained in:
parent
29b76d8a2b
commit
7cf54bd7b1
|
@ -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…
Reference in a new issue