mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-12-11 14:41:57 +00:00
Refactor so PWE compiles with the newly externalized LibCommon
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
#include "CProgressDialog.h"
|
||||
#include "UICommon.h"
|
||||
#include "Editor/ResourceBrowser/CResourceBrowser.h"
|
||||
#include <Common/AssertMacro.h>
|
||||
#include <Common/Macros.h>
|
||||
#include <Core/GameProject/CGameExporter.h>
|
||||
#include <Core/GameProject/COpeningBanner.h>
|
||||
|
||||
@@ -101,7 +101,7 @@ void CProjectSettingsDialog::SetupPackagesList()
|
||||
mpUI->PackagesList->clear();
|
||||
if (!mpProject) return;
|
||||
|
||||
for (u32 iPkg = 0; iPkg < mpProject->NumPackages(); iPkg++)
|
||||
for (uint32 iPkg = 0; iPkg < mpProject->NumPackages(); iPkg++)
|
||||
{
|
||||
CPackage *pPackage = mpProject->PackageByIndex(iPkg);
|
||||
ASSERT(pPackage != nullptr);
|
||||
@@ -114,7 +114,7 @@ void CProjectSettingsDialog::SetupPackagesList()
|
||||
|
||||
void CProjectSettingsDialog::CookPackage()
|
||||
{
|
||||
u32 PackageIdx = mpUI->PackagesList->currentRow();
|
||||
uint32 PackageIdx = mpUI->PackagesList->currentRow();
|
||||
|
||||
if (PackageIdx != -1)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user