Question:
What part of the code should I change so the cheat starts in one window style by default?
thank you!
Go to your config.h file and change this int menuStyle{ 0 }; to int menuStyle{ 1 }; 0 by default means that you get the window bar, 1 makes the one window style to your default.
Thank you very much!
better method: edit Osiris.cpp to run config.load at the end of the file, at injection time it will auto load.
you can modify the default config without having to recompile the entire project.
Most helpful comment
Go to your config.h file and change this
int menuStyle{ 0 };toint menuStyle{ 1 };0 by default means that you get the window bar, 1 makes the one window style to your default.