Browse Source

Fix compile error from previous commit.

Miku AuahDark 1 year ago
parent
commit
8cdbeb20b9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/modules/filesystem/physfs/File.cpp

+ 1 - 1
src/modules/filesystem/physfs/File.cpp

@@ -67,8 +67,8 @@ File::File(const std::string &filename, Mode mode)
 
 		if (realdir != nullptr && strcmp(realdir, savedir.c_str()) == 0)
 			love::android::fixupPermissionSingleFile(savedir, filename);
-#endif
 	}
+#endif
 }
 
 File::File(const File &other)