Browse Source

nro: Make constructor explicit

Makes it consistent with the other Apploader constructors, and prevents
implicit conversions.
nce_cpp
Lioncash 8 years ago
parent
commit
6fd1615b93
  1. 2
      src/core/loader/nro.h

2
src/core/loader/nro.h

@ -16,7 +16,7 @@ namespace Loader {
/// Loads an NRO file
class AppLoader_NRO final : public AppLoader, Linker {
public:
AppLoader_NRO(FileSys::VirtualFile file);
explicit AppLoader_NRO(FileSys::VirtualFile file);
/**
* Returns the type of the file

Loading…
Cancel
Save