瀏覽代碼

Remove super-seeded hack

Felix Paul Kühne 11 年之前
父節點
當前提交
d01804e088
共有 1 個文件被更改,包括 0 次插入6 次删除
  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;
 }