Skip to content

Commit

Permalink
[Linux] Fixed minor typo
Browse files Browse the repository at this point in the history
  • Loading branch information
thefiddler committed Jul 18, 2014
1 parent b1a31c0 commit 9105533
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/OpenTK/Platform/Linux/LinuxDisplayDriver.cs
Expand Up @@ -259,7 +259,7 @@ void UpdateDisplays(int fd)
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;
Expand Down

0 comments on commit 9105533

Please sign in to comment.