mirror of
https://github.com/LIV2/amiberry.git
synced 2025-12-06 06:32:45 +00:00
chore: added some comments in the scaling options
[skip ci]
This commit is contained in:
parent
1742630c58
commit
44fa30332e
@ -149,6 +149,11 @@ bool isModeAspectRatioExact(SDL_DisplayMode* mode, const int width, const int he
|
||||
return mode->w % width == 0 && mode->h % height == 0;
|
||||
}
|
||||
|
||||
// Scaling methods available:
|
||||
// -1: Auto select between Nearest Neighbor and Linear (default)
|
||||
// 0: Nearest Neighbor
|
||||
// 1: Linear
|
||||
// 2: Integer Scaling (Nearest Neighbor)
|
||||
void set_scaling_option(const uae_prefs* p, const int width, const int height)
|
||||
{
|
||||
if (p->scaling_method == -1) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user