mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-06-26 20:36:16 +00:00
CLI: Add argument to pass an argument to the game (#2135)
This commit is contained in:
parent
1ea5f8f092
commit
3b92cd1c1a
6 changed files with 61 additions and 9 deletions
|
@ -49,7 +49,7 @@ class Linker;
|
|||
struct EntryParams {
|
||||
int argc;
|
||||
u32 padding;
|
||||
const char* argv[3];
|
||||
const char* argv[33];
|
||||
VAddr entry_addr;
|
||||
};
|
||||
|
||||
|
@ -143,7 +143,7 @@ public:
|
|||
void Relocate(Module* module);
|
||||
bool Resolve(const std::string& name, Loader::SymbolType type, Module* module,
|
||||
Loader::SymbolRecord* return_info);
|
||||
void Execute();
|
||||
void Execute(const std::vector<std::string> args = {});
|
||||
void DebugDump();
|
||||
|
||||
private:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue