bucanero / PS4CheatsManager

PS4 Cheats Manager
http://www.bucanero.com.ar/
GNU General Public License v3.0
283 stars 36 forks source link

Fix splash screen still showing when `false` #94

Closed illusion0001 closed 1 year ago

illusion0001 commented 1 year ago

Settings must be loaded before check

bucanero commented 1 year ago

I'm wondering if the boot logo should be skipped or not, as I don't see as a terrible thing to let the user wait a few seconds for that animation.

Anyways, if we get a nice custom logo for the "GoldHen Dev team" in the future then we re-discuss this.

illusion0001 commented 1 year ago

fow what i wanted, rapidly testing new code is slower due to having to wait for the animations, so i made these fixes.

bucanero commented 1 year ago

fow what i wanted, rapidly testing new code is slower due to having to wait for the animations, so i made these fixes.

in that case, it could be a compilation flag like

#ifndef DEBUG_ENABLE_LOG
    drawLogo(1);
#endif

then when you're building test builds, you just use the DEBUG flag and the logo and animations will be removed. (but only for debug builds, and not from user settings)

illusion0001 commented 1 year ago

Yes that works as I compile debug build usually

illusion0001 commented 1 year ago

Fixed in #95