# | Line 46 | Line 46 | static uint32 p; | |
---|---|---|
46 | // Check whether a mode with the specified depth exists | |
47 | static bool has_depth(video_depth depth) | |
48 | { | |
49 | < | vector<video_mode>::const_iterator i = VideoModes.begin(), end = VideoModes.end(); |
49 | > | std::vector<video_mode>::const_iterator i = VideoModes.begin(), end = VideoModes.end(); |
50 | while (i != end) { | |
51 | if (i->depth == depth) | |
52 | return true; |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |