mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2025-08-04 06:45:39 +02:00
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:
parent
55b5118dc0
commit
e2e21441c8
1 changed files with 10 additions and 0 deletions
|
@ -273,6 +273,11 @@ bool Local_Storage::file_exists(std::string folder, std::string file)
|
||||||
return false;
|
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)
|
unsigned int Local_Storage::file_size(std::string folder, std::string file)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -283,6 +288,11 @@ bool Local_Storage::file_delete(std::string folder, std::string file)
|
||||||
return false;
|
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)
|
uint64_t Local_Storage::file_timestamp(std::string folder, std::string file)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Add table
Reference in a new issue