mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-11 00:25:29 +00:00
[Linux] Fixed minor typo
This commit is contained in:
parent
b1a31c08cc
commit
91055336c0
|
@ -259,7 +259,7 @@ namespace OpenTK.Platform.Linux
|
|||
unsafe static void GetModes(LinuxDisplay display, DisplayResolution[] modes, out DisplayResolution current)
|
||||
{
|
||||
int mode_count = display.pConnector->count_modes;
|
||||
Debug.Print("[KMS] Display supports {0} modes", mode_count);
|
||||
Debug.Print("[KMS] Display supports {0} mode(s)", mode_count);
|
||||
for (int i = 0; i < mode_count; i++)
|
||||
{
|
||||
ModeInfo* mode = display.pConnector->modes + i;
|
||||
|
|
Loading…
Reference in a new issue