mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator
synced 2025-05-23 21:57:40 +08: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
@ -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…
x
Reference in New Issue
Block a user