mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-14 06:47:57 -05:00
FileSys/Kernel: Implement SetSize service call for File objects.
This commit is contained in:
@ -48,6 +48,15 @@ size_t File_RomFS::GetSize() const {
|
||||
return -1;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the size of the file in bytes
|
||||
* @param size New size of the file
|
||||
* @return true if successful
|
||||
*/
|
||||
bool File_RomFS::SetSize(const u64 size) const {
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Close the file
|
||||
* @return true if the file closed correctly
|
||||
|
Reference in New Issue
Block a user