Changeset 591 for branches/Derelict2/DerelictSFML
- Timestamp:
- 11/06/11 03:36:56 (7 months ago)
- Files:
-
- branches/Derelict2/DerelictSFML/derelict/sfml/audio.d (modified) (1 diff)
- branches/Derelict2/DerelictSFML/derelict/sfml/graphics.d (modified) (1 diff)
- branches/Derelict2/DerelictSFML/derelict/sfml/network.d (modified) (1 diff)
- branches/Derelict2/DerelictSFML/derelict/sfml/system.d (modified) (1 diff)
- branches/Derelict2/DerelictSFML/derelict/sfml/window.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/Derelict2/DerelictSFML/derelict/sfml/audio.d
r526 r591 179 179 static ~this() 180 180 { 181 DerelictSFMLAudio.unload(); 181 if(SharedLibLoader.isAutoUnloadEnabled()) 182 DerelictSFMLAudio.unload(); 182 183 } branches/Derelict2/DerelictSFML/derelict/sfml/graphics.d
r526 r591 287 287 static ~this() 288 288 { 289 DerelictSFMLGraphics.unload(); 290 } 289 if(SharedLibLoader.isAutoUnloadEnabled()) 290 DerelictSFMLGraphics.unload(); 291 } branches/Derelict2/DerelictSFML/derelict/sfml/network.d
r526 r591 201 201 static ~this() 202 202 { 203 DerelictSFMLNetwork.unload(); 204 } 203 if(SharedLibLoader.isAutoUnloadEnabled()) 204 DerelictSFMLNetwork.unload(); 205 } branches/Derelict2/DerelictSFML/derelict/sfml/system.d
r526 r591 93 93 static ~this() 94 94 { 95 DerelictSFMLSystem.unload(); 95 if(SharedLibLoader.isAutoUnloadEnabled()) 96 DerelictSFMLSystem.unload(); 96 97 } branches/Derelict2/DerelictSFML/derelict/sfml/window.d
r526 r591 109 109 static ~this() 110 110 { 111 DerelictSFMLWindow.unload(); 111 if(SharedLibLoader.isAutoUnloadEnabled()) 112 DerelictSFMLWindow.unload(); 112 113 }
