mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 17:47:43 +00:00
Runtime/MP1: Replace bitfield unions with constructor initializers
This commit is contained in:
@@ -6,9 +6,8 @@
|
||||
|
||||
namespace urde::MP1 {
|
||||
|
||||
CPauseScreenBlur::CPauseScreenBlur() : x4_mapLightQuarter(g_SimplePool->GetObj("TXTR_MapLightQuarter")) {
|
||||
x50_25_gameDraw = true;
|
||||
}
|
||||
CPauseScreenBlur::CPauseScreenBlur()
|
||||
: x4_mapLightQuarter(g_SimplePool->GetObj("TXTR_MapLightQuarter")), x50_24_blurring(false), x50_25_gameDraw(true) {}
|
||||
|
||||
void CPauseScreenBlur::OnNewInGameGuiState(EInGameGuiState state, CStateManager& stateMgr) {
|
||||
switch (state) {
|
||||
|
||||
Reference in New Issue
Block a user