Fix: Steam path locator Android build error

Added `platform_get_steam_path` to android.c
This commit is contained in:
Robert Jordan 2017-10-25 11:23:17 -04:00 committed by Michael Steenbeek
parent be4fe7b681
commit 98043c284b
1 changed files with 5 additions and 0 deletions

View File

@ -78,4 +78,9 @@ void platform_get_changelog_path(utf8 *outPath, size_t outSize)
STUB();
}
bool platform_get_steam_path(utf8 * outPath, size_t outSize)
{
return false;
}
#endif