- Timestamp:
- 03/21/12 18:36:20 (14 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgPresentation/PickEventHandler.cpp
r12822 r13041 1 /* -*-c++-*- Present3D - Copyright (C) 1999-2006 Robert Osfield 1 /* -*-c++-*- Present3D - Copyright (C) 1999-2006 Robert Osfield 2 2 * 3 * This software is open source and may be redistributed and/or modified under 3 * This software is open source and may be redistributed and/or modified under 4 4 * the terms of the GNU General Public License (GPL) version 2.0. 5 5 * The full license is in LICENSE.txt file included with this distribution,. 6 * 6 * 7 7 * This software is distributed in the hope that it will be useful, 8 8 * but WITHOUT ANY WARRANTY; without even the implied warranty of 9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 10 10 * include LICENSE.txt for more details. 11 11 */ … … 127 127 if (!paths.empty()) 128 128 { 129 #ifdef _WIN32 129 #ifdef _WIN32 130 130 std::string delimintor(";"); 131 131 #else … … 176 176 OpenThreads::Thread::microSleep(500000); // half second sleep. 177 177 } 178 178 179 179 break; 180 180 } … … 196 196 } 197 197 } 198 198 199 199 if (requiresJump()) 200 200 { … … 207 207 int newSlide = previousSlide + _slideNum; 208 208 int newLayer = previousLayer + _layerNum; 209 if (newLayer<0) 209 if (newLayer<0) 210 210 { 211 211 newLayer = 0;
