glysbaysb

Results 3 comments of glysbaysb

It might be because Ogden doesn't talk to the player, thus the quest never starting. In 636585918 a bit of code relating to quest activation has been added (but never...

The `--toggle-minimize` flag is a bit harder than it looks. https://github.com/keepassxreboot/keepassxc/blob/develop/src/gui/MainWindow.cpp#L632 shows/un-minimizes the application as soon as a new instance is started. Removing that check breaks the existing behavior. But...

Well how does your executable get its arguments? Is it via GetCommandLineA()/GetCommandLineW()? You can either hook that or replace the saved pointer. `MOV EAX, DS:[some address]` `RETN` Starting with Win...