Skip to content

Commit c35b909

Browse files
committed
xrGame.vcxproj: added forgotten file to the project
xrGame/ui/UILoadingScreen.cpp: cosmetic changes
1 parent b70691f commit c35b909

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

src/xrGame/ui/UILoadingScreen.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ UILoadingScreen::UILoadingScreen()
2828
void UILoadingScreen::Initialize()
2929
{
3030
CUIXml uiXml;
31-
bool result = uiXml.Load(CONFIG_PATH, UI_PATH, UI_PATH_DEFAULT, "ui_mm_loading_screen.xml");
31+
bool loaded = uiXml.Load(CONFIG_PATH, UI_PATH, UI_PATH_DEFAULT, "ui_mm_loading_screen.xml");
3232

33-
if (!result) // Robustness? Yes!
33+
if (!loaded) // Robustness? Yes!
3434
{
3535
if (UI().is_widescreen())
3636
uiXml.Set(LoadingScreenXML16x9);

src/xrGame/xrGame.vcxproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3489,6 +3489,7 @@
34893489
</ClCompile>
34903490
<ClCompile Include="ui\UIListItemServer.cpp" />
34913491
<ClCompile Include="ui\UILoadingScreen.cpp" />
3492+
<ClInclude Include="ui\UILoadingScreenHardcoded.h" />
34923493
<ClCompile Include="ui\UILogsWnd.cpp" />
34933494
<ClCompile Include="ui\UIMainIngameWnd.cpp" />
34943495
<ClCompile Include="ui\UIMap.cpp" />

src/xrGame/xrGame.vcxproj.filters

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10185,6 +10185,9 @@
1018510185
<ClCompile Include="WeaponScript.cpp">
1018610186
<Filter>Core\Client\Objects\items &amp; weapons\Weapons\WeaponScript</Filter>
1018710187
</ClCompile>
10188+
<ClCompile Include="ui\UILoadingScreenHardcoded.h">
10189+
<Filter>UI\Common\LoadingScreen</Filter>
10190+
</ClCompile>
1018810191
</ItemGroup>
1018910192
<ItemGroup>
1019010193
<CustomBuild Include="ai\monsters\chimera\chimera_attack_state.h">

0 commit comments

Comments
 (0)