mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-07-11 17:44:04 +02:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| cf829a9eca |
@@ -460,7 +460,7 @@ The team behind Unleashed Recompiled does not currently have any plans to port m
|
||||
|
||||
- [Goalringmod27](https://linktr.ee/goalringmod27): Concept Artist behind the achievements overlay shown during gameplay. Aided in the creation of the Transparency Anti-Aliasing thumbnail.
|
||||
|
||||
- [M&M](https://github.com/ActualMandM): Provisional support for dynamic UI aspect ratio.
|
||||
- [RagdollClash](https://github.com/RagdollClash): Provisional support for dynamic UI aspect ratio.
|
||||
|
||||
- [DaGuAr](https://twitter.com/TheDaguar): Provided Spanish localization for the custom menus alongside Darío.
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@ inline std::array<const char*, 17> g_credits =
|
||||
"LJSTAR",
|
||||
"saguinee",
|
||||
"Goalringmod27",
|
||||
"M&M",
|
||||
"RagdollClash",
|
||||
"DaGuAr",
|
||||
"brianuuuSonic",
|
||||
"Kitzuku"
|
||||
|
||||
@@ -1255,14 +1255,9 @@ static void DrawConfigOptions()
|
||||
|
||||
case 3: // VIDEO
|
||||
{
|
||||
auto displayModeCount = (int32_t)GameWindow::GetDisplayModes().size();
|
||||
auto canChangeWindowSize = !Config::Fullscreen && displayModeCount > 1;
|
||||
auto windowSizeReason = &Localise("Options_Desc_NotAvailableFullscreen");
|
||||
|
||||
if (!Config::Fullscreen && displayModeCount <= 1)
|
||||
windowSizeReason = &Localise("Options_Desc_NotAvailableHardware");
|
||||
|
||||
DrawConfigOption(rowCount++, yOffset, &Config::WindowSize, canChangeWindowSize, windowSizeReason, 0, 0, displayModeCount - 1, false);
|
||||
DrawConfigOption(rowCount++, yOffset, &Config::WindowSize,
|
||||
!Config::Fullscreen, &Localise("Options_Desc_NotAvailableFullscreen"),
|
||||
0, 0, (int32_t)GameWindow::GetDisplayModes().size() - 1, false);
|
||||
|
||||
auto displayCount = GameWindow::GetDisplayCount();
|
||||
auto canChangeMonitor = Config::Fullscreen && displayCount > 1;
|
||||
|
||||
Reference in New Issue
Block a user