mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-11 10:07:58 -05:00
Remove extraneous semicolons
This commit is contained in:
@ -41,7 +41,7 @@ std::unique_ptr<File> Archive_RomFS::OpenFile(const Path& path, const Mode mode)
|
||||
bool Archive_RomFS::CreateDirectory(const Path& path) const {
|
||||
ERROR_LOG(FILESYS, "Attempted to create a directory in ROMFS.");
|
||||
return false;
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* Open a directory specified by its path
|
||||
|
@ -26,7 +26,7 @@ public:
|
||||
* Get the IdCode of the archive (e.g. RomFS, SaveData, etc.)
|
||||
* @return IdCode of the archive
|
||||
*/
|
||||
IdCode GetIdCode() const override { return IdCode::RomFS; };
|
||||
IdCode GetIdCode() const override { return IdCode::RomFS; }
|
||||
|
||||
/**
|
||||
* Open a file specified by its path, using the specified mode
|
||||
|
@ -30,7 +30,7 @@ public:
|
||||
* Get the IdCode of the archive (e.g. RomFS, SaveData, etc.)
|
||||
* @return IdCode of the archive
|
||||
*/
|
||||
IdCode GetIdCode() const override { return IdCode::SDMC; };
|
||||
IdCode GetIdCode() const override { return IdCode::SDMC; }
|
||||
|
||||
/**
|
||||
* Open a file specified by its path, using the specified mode
|
||||
|
Reference in New Issue
Block a user