make 1:1 PAR option more descriptive

should help avoid confusion about what it actually does.
This commit is contained in:
hizzlekizzle 2016-08-27 19:25:36 -05:00 committed by GitHub
parent 43b6ce416e
commit 20a27822f3

View File

@ -1457,7 +1457,7 @@ void video_driver_set_viewport_square_pixel(void)
snprintf(aspectratio_lut[ASPECT_RATIO_SQUARE].name,
sizeof(aspectratio_lut[ASPECT_RATIO_SQUARE].name),
"%u:%u (1:1 PAR)", aspect_x, aspect_y);
"1:1 PAR (%u:%u DAR))", aspect_x, aspect_y);
aspectratio_lut[ASPECT_RATIO_SQUARE].value = (float)aspect_x / aspect_y;
}