Skip to content

Commit

Permalink
[MIRROR] pixel perfect 4x [MDB IGNORE] (#25182)
Browse files Browse the repository at this point in the history
* pixel perfect 4x (#79660)

## About The Pull Request
Adds pixel perfect 4x and 4.5x scaling. I tested it and it seems to work
though 4.5 scaling causes very slightly distorted pixel sizes. There's
also a bit of letterboxing but I think that happens with all of the
pixel perfect settings.

## Why It's Good For The Game
better fits 4k monitors and isn't stretch to fit

## Changelog
:cl:
qol: adds pixel perfect 4x, 4.5x, and 5x
/:cl:

* pixel perfect 4x

---------

Co-authored-by: aaaa1023 <[email protected]>
  • Loading branch information
2 people authored and FFMirrorBot committed Nov 22, 2023
1 parent 558abba commit 6ae5a68
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/client/preferences/pixel_size.dm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
savefile_identifier = PREFERENCE_PLAYER

minimum = 0
maximum = 3
maximum = 5

step = 0.5

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,8 @@ export const pixel_size: Feature<number> = {
1.5: 'Pixel Perfect 1.5x',
2: 'Pixel Perfect 2x',
3: 'Pixel Perfect 3x',
4: 'Pixel Perfect 4x',
4.5: 'Pixel Perfect 4.5x',
5: 'Pixel Perfect 5x',
}),
};

0 comments on commit 6ae5a68

Please sign in to comment.