mirror of
https://github.com/Expand-sys/CCash
synced 2026-03-22 20:47:10 +11:00
🐛 fixed error message
This commit is contained in:
parent
4d54da90b8
commit
474b8b0d47
1 changed files with 1 additions and 1 deletions
|
|
@ -346,7 +346,7 @@ void Bank::Load()
|
|||
std::ifstream users_load(users_location, std::ios::out | std::ios::binary);
|
||||
if (!users_load.is_open())
|
||||
{
|
||||
throw std::invalid_argument("Cannot find save file, to generate a new one run \"./bank\" (warning: will override file if it already exists)\n");
|
||||
throw std::invalid_argument("Cannot find save file, to generate a new one run \"sudo ./bank\" (warning: will override file if it already exists)\n");
|
||||
}
|
||||
|
||||
uint32_t buffer_size;
|
||||
|
|
|
|||
Loading…
Reference in a new issue