OdinsPlayground Posted February 12, 2021 Share Posted February 12, 2021 Hey all. I'm trying to place a parameter at end of string, is this possible? What I'm trying to do: yuzu.exe -g "FULL\PATH\TO\ROM\FILE" -f But currently I can't move the -f to end of string: yuzu.exe -g -f "FULL\PATH\TO\ROM\FILE" Quote Link to comment Share on other sites More sharing options...
JoeViking245 Posted February 12, 2021 Share Posted February 12, 2021 (edited) I think this works. (I believe if you place %romfile% somewhere in the custom command line, it'll move "FULL\PATH\TO\ROM\FILE" to that location. It may not reflect on the edit emulator screen, but will when it executes) yuzu.exe -g %romfile% -f Or just put the -f first yuzu.exe -f -g Edited February 12, 2021 by JoeViking245 2 Quote Link to comment Share on other sites More sharing options...
Your Friendly A.I Overlord Posted February 12, 2021 Share Posted February 12, 2021 26 minutes ago, JoeViking245 said: Or just put the -f first yuzu.exe - f -g If I may expand on this a little? -f = fullscreen and -g = path to game. So the only way it is going to work is -f -g Quote Link to comment Share on other sites More sharing options...
JoeViking245 Posted February 12, 2021 Share Posted February 12, 2021 You are correct. Though some emulators will let you mix around the parameters, Yuzu doesn't seem to like it. (actually tested it this time ?) Quote Link to comment Share on other sites More sharing options...
OdinsPlayground Posted February 13, 2021 Author Share Posted February 13, 2021 17 hours ago, JoeViking245 said: I think this works. (I believe if you place %romfile% somewhere in the custom command line, it'll move "FULL\PATH\TO\ROM\FILE" to that location. It may not reflect on the edit emulator screen, but will when it executes) yuzu.exe -g %romfile% -f Or just put the -f first yuzu.exe -f -g Thanks, I can confirm the former works! I actually had tried adding that %romfile% line - but not actually running it - because of the file path remaining at the end. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.