mirror of
https://github.com/cemu-project/cemu_graphic_packs.git
synced 2024-12-23 08:21:51 +01:00
Fix 427:240 aspect ratio naming
This commit is contained in:
parent
1837b48648
commit
444bcdf70c
@ -29,6 +29,9 @@ function get_title($width, $height) {
|
||||
} else if ($ratio[0] == 8 && $ratio[1] == 5) {
|
||||
// common sense
|
||||
$title = $title . " (16:10)";
|
||||
} else if ($ratio[0] == 427 && $ratio[1] == 240) {
|
||||
// common sense
|
||||
return $title;
|
||||
} else {
|
||||
$title = $title . " (" . $ratio[0] .":". $ratio[1] . ")";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user