Browse Source

Remove super-seeded hack

Felix Paul Kühne 11 years ago
parent
commit
d01804e088
1 changed files with 0 additions and 6 deletions
  1. 0 6
      Sources/VLCAppDelegate.m

+ 0 - 6
Sources/VLCAppDelegate.m

@@ -254,14 +254,8 @@
 
 - (NSString *)directoryPath
 {
-#define LOCAL_PLAYBACK_HACK 0
-#if LOCAL_PLAYBACK_HACK && TARGET_IPHONE_SIMULATOR
-    NSString *directoryPath = @"/Users/fkuehne/Desktop/VideoLAN docs/Clips/sel/";
-#else
     NSArray *searchPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
     NSString *directoryPath = searchPaths[0];
-#endif
-
     return directoryPath;
 }