SteamClientHomebrew / Millennium

Apply themes/skins/customize Steam® after the 2023-04-27 Chromium UI update
https://steambrew.app
MIT License
695 stars 12 forks source link

fix linux build #50

Closed ricewind012 closed 1 month ago

ShadowMonster99 commented 1 month ago

keep compiler derivatives inline with the code to follow the semantic syntax used elsewhere (and for better readability).

i.e

{
    #ifdef something
    code();
    #endif
}

instead of

{
#ifdef something
    code();
#endif
}