Eiyeron Fulmincendii il y a 9 ans
Parent
commit
07ec6a7332
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      platform/sfml/Quirks.cpp

+ 1 - 1
platform/sfml/Quirks.cpp

@@ -17,7 +17,7 @@ void Quirks::deinit()
 
 std::unique_ptr<char> Quirks::solve_absolute_path(const char *path)
 {
-    std::unique_ptr<char> result(new char[strlen(path)+1]);
+    std::unique_ptr<char> result(new char[strlen(path) + 1]);
     strcpy(result.get(), path);
     return result;
 }