From 1dd859c9d116521ede5ba55636dc00873f4043ad Mon Sep 17 00:00:00 2001 From: fysx Date: Mon, 10 Feb 2014 08:31:40 +0100 Subject: [PATCH] fixed indentations --- .../src/modules/filesystem/physfs/Filesystem.cpp | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/jni/love/src/modules/filesystem/physfs/Filesystem.cpp b/jni/love/src/modules/filesystem/physfs/Filesystem.cpp index f2f4ab8f..c0a39020 100644 --- a/jni/love/src/modules/filesystem/physfs/Filesystem.cpp +++ b/jni/love/src/modules/filesystem/physfs/Filesystem.cpp @@ -229,19 +229,17 @@ bool Filesystem::setIdentity(const char *ident, bool appendToPath) save_path_full += save_path_relative; #ifdef LOVE_ANDROID - std::string internal_storage_path = SDL_AndroidGetInternalStoragePath(); + std::string internal_storage_path = SDL_AndroidGetInternalStoragePath(); - std::string save_directory = internal_storage_path + "/save"; + std::string save_directory = internal_storage_path + "/save"; save_path_full = std::string(SDL_AndroidGetInternalStoragePath()) + std::string("/save/") + save_identity; - - if (androidDirectoryExists (save_path_full.c_str())) { - SDL_Log ("dir exists"); - } else { - SDL_Log ("does not exist"); - } - + if (androidDirectoryExists (save_path_full.c_str())) { + SDL_Log ("dir exists"); + } else { + SDL_Log ("does not exist"); + } if (!androidDirectoryExists (save_path_full.c_str())) { if (!androidMkdir (save_path_full.c_str())) {