Changeset 20614 in vbox
- Timestamp:
- Jun 16, 2009 9:30:04 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 48672
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/OpenGL/spu_loader/glloader.py
r20609 r20614 64 64 #endif 65 65 66 /*#define CR_NO_GL_SYSTEM_PATH 1*/ 66 67 67 68 /* … … 153 154 crStrcat( system_path, "/" ); 154 155 #endif 156 #if !defined(CR_NO_GL_SYSTEM_PATH) 155 157 crStrcat( system_path, lib ); 156 dll = crDLLOpen( system_path, 1 /*resolveGlobal*/ ); 158 dll = crDLLOpen(system_path, 1 /*resolveGlobal*/); 159 #else 160 dll = crDLLOpen(lib, 1 /*resolveGlobal*/); 161 #endif 157 162 return dll; 158 163 }
Note:
See TracChangeset
for help on using the changeset viewer.