--- BasiliskII/src/slot_rom.cpp 2001/06/28 21:19:59 1.7 +++ BasiliskII/src/slot_rom.cpp 2001/06/28 21:36:46 1.8 @@ -46,7 +46,7 @@ static uint32 p; // Check whether a mode with the specified depth exists static bool has_depth(video_depth depth) { - vector::const_iterator i = VideoModes.begin(), end = VideoModes.end(); + std::vector::const_iterator i = VideoModes.begin(), end = VideoModes.end(); while (i != end) { if (i->depth == depth) return true;