control_metadata: Add GetRawBytes function to NACP

Returns the raw bytes of the NACP file. Needed for GetApplicationControlData which returns the raw, unprocessed NACP to the game.
This commit is contained in:
Zach Hilman 2018-10-28 14:55:32 -04:00
parent 24c7e153b7
commit 7c8d9d5960
2 changed files with 7 additions and 0 deletions

View file

@ -81,6 +81,7 @@ public:
u64 GetTitleId() const;
u64 GetDLCBaseTitleId() const;
std::string GetVersionString() const;
std::vector<u8> GetRawBytes() const;
private:
std::unique_ptr<RawNACP> raw;