mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-02-06 08:55:03 +03:00
Fix indentation with ifdefs and FILESYSTEM_delete()
Nested ifdefs have been indented one space accordingly, and FILESYSTEM_delete() has been changed to use a tab instead of 4 spaces.
This commit is contained in:
@@ -290,11 +290,11 @@ void PLATFORM_migrateSaveData(char* output)
|
||||
return;
|
||||
}
|
||||
strcpy(oldDirectory, homeDir);
|
||||
#if defined(__linux__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__HAIKU__) || defined(__DragonFly__)
|
||||
#if defined(__linux__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__HAIKU__) || defined(__DragonFly__)
|
||||
strcat(oldDirectory, "/.vvvvvv/");
|
||||
#elif defined(__APPLE__)
|
||||
#elif defined(__APPLE__)
|
||||
strcat(oldDirectory, "/Documents/VVVVVV/");
|
||||
#endif
|
||||
#endif
|
||||
dir = opendir(oldDirectory);
|
||||
if (!dir)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user