mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Feedback
This commit is contained in:
parent
dc520a59d3
commit
07413aa4e3
3 changed files with 2 additions and 3 deletions
|
@ -273,7 +273,7 @@ int64_t Android_ComputeRecursiveDirectorySize(const std::string &uri) {
|
|||
int64_t size = env->CallLongMethod(g_nativeActivity, computeRecursiveDirectorySize, param);
|
||||
double elapsed = time_now_d() - start;
|
||||
|
||||
ERROR_LOG(IO, "ComputeRecursiveDirectorySize(%s) in %0.3f s", uri.c_str(), elapsed);
|
||||
INFO_LOG(IO, "ComputeRecursiveDirectorySize(%s) in %0.3f s", uri.c_str(), elapsed);
|
||||
return size;
|
||||
}
|
||||
|
||||
|
|
|
@ -115,7 +115,6 @@ public:
|
|||
FileSystemFlags Flags() override { return flags; }
|
||||
u64 FreeSpace(const std::string &path) override;
|
||||
|
||||
// TODO: Replace with optimized implementation.
|
||||
bool ComputeRecursiveDirSizeIfFast(const std::string &path, int64_t *size) override;
|
||||
|
||||
private:
|
||||
|
|
|
@ -2331,7 +2331,7 @@ static u32 sceIoDopen(const char *path) {
|
|||
double listTime = time_now_d() - startTime;
|
||||
|
||||
if (listTime > 0.01) {
|
||||
ERROR_LOG(IO, "Dir listing '%s' took %0.3f", path, listTime);
|
||||
INFO_LOG(IO, "Dir listing '%s' took %0.3f", path, listTime);
|
||||
}
|
||||
|
||||
// Blacklist some directories that games should not be able to find out about.
|
||||
|
|
Loading…
Add table
Reference in a new issue