diff options
author | elupus <elupus@xbmc.org> | 2011-03-25 18:30:20 +0100 |
---|---|---|
committer | elupus <elupus@xbmc.org> | 2011-03-25 20:04:30 +0100 |
commit | b1654bd028c973df90eb9cb4f46c9ba3f2cdae4b (patch) | |
tree | fb76a0a19c168c093184166dccc6c97a916cb885 | |
parent | e471247153bcc7d263a645b765466a5f755dc6fa (diff) |
fixed: makefile order for new circular filecache
-rw-r--r-- | xbmc/filesystem/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/filesystem/Makefile.in b/xbmc/filesystem/Makefile.in index 12591f9206..c471040437 100644 --- a/xbmc/filesystem/Makefile.in +++ b/xbmc/filesystem/Makefile.in @@ -4,8 +4,8 @@ CXXFLAGS+=-D__STDC_FORMAT_MACROS \ SRCS=AddonsDirectory.cpp \ ASAPFileDirectory.cpp \ - CacheMemBuffer.cpp \ CacheCircular.cpp \ + CacheMemBuffer.cpp \ CacheStrategy.cpp \ CDDADirectory.cpp \ DAAPDirectory.cpp \ |