Dear developers, I had one question about the frontend method calling order.
I am talking about 2 methods only: _init
and _get_env
Now, RetroArch code run first: method _init
and only then method _get_env
The problem is that for example on PlayStation2, arguments (basically argv[1] ) contain information that is needed for proper initialization (basically filesystem mount point information).
But we cannot access argv[1] on the _init
stage so we are forced to do part of the initialization inside method _get_env
(where we can parse argv[1]).
So the question is: if it will be possible to change method order - so _get_env
is called earlier than _init
. So we extract all info from arguments and then parse it at the initialization stage.