mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-19 19:58:52 -05:00
Loader: Remove unnecessary pointer indirection to IOFile
This commit is contained in:
@ -17,7 +17,7 @@ namespace Loader {
|
||||
/// Loads an 3DSX file
|
||||
class AppLoader_THREEDSX final : public AppLoader {
|
||||
public:
|
||||
AppLoader_THREEDSX(std::unique_ptr<FileUtil::IOFile>&& file, std::string filename)
|
||||
AppLoader_THREEDSX(FileUtil::IOFile&& file, std::string filename)
|
||||
: AppLoader(std::move(file)), filename(std::move(filename)) {}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user