- svn:eol-style = native fixes
[supertux.git] / src / addon / addon_manager.cpp
index 1ec5c59..cf7ab80 100644 (file)
@@ -387,10 +387,10 @@ AddonManager::load_addons()
       // make sure it looks like an infoFile
       static const std::string infoExt = ".nfo";
       if (potentialInfoFileName.length() <= infoExt.length())
-         continue;
+        continue;
 
       if (potentialInfoFileName.compare(potentialInfoFileName.length()-infoExt.length(), infoExt.length(), infoExt) != 0)
-         continue;
+        continue;
 
       // make sure it's in the current archive
       std::string infoFileDir = PHYSFS_getRealDir(potentialInfoFileName.c_str());