fna-workbench

fna-workbench Commit Details


Date:2016-02-03 12:15:18 (9 years 7 months ago)
Author:Ethan Lee
Branch:master
Commit:5ed4c3aea49541c13b937214b9e7bffdde784bd2
Parents: f5c538c8e1dea357a0db67c1795cfc55903423ad
Message:XNA DisplayModes are listed in lowest-to-highest

Changes:

File differences

src/SDL2/SDL2_FNAPlatform.cs
489489
490490
491491
492
492
493493
494494
495495
{
List<DisplayMode> modes = new List<DisplayMode>();
int numModes = SDL.SDL_GetNumDisplayModes(i);
for (int j = 0; j < numModes; j += 1)
for (int j = numModes - 1; j >= 0; j -= 1)
{
SDL.SDL_GetDisplayMode(i, j, out filler);

Archive Download the corresponding diff file

Branches

Number of commits:
Page rendered in 0.81567s using 13 queries.