Add missing NO_DISK_WRITES local_storage funcs.

Add Local_Storage::delete_data_settings and Local_Storage::data_settings_exists
implementations when NO_DISK_WRITES is defined. (lobby_connect build.)
This commit is contained in:
redpolline 2024-12-21 09:43:29 -05:00
parent 55b5118dc0
commit e2e21441c8

View File

@ -273,6 +273,11 @@ bool Local_Storage::file_exists(std::string folder, std::string file)
return false;
}
bool Local_Storage::data_settings_exists(std::string file)
{
return false;
}
unsigned int Local_Storage::file_size(std::string folder, std::string file)
{
return 0;
@ -283,6 +288,11 @@ bool Local_Storage::file_delete(std::string folder, std::string file)
return false;
}
bool Local_Storage::delete_data_settings(std::string file)
{
return false;
}
uint64_t Local_Storage::file_timestamp(std::string folder, std::string file)
{
return 0;