Skip to content

Commit

Permalink
apply new formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ASpoonPlaysGames committed Aug 23, 2024
1 parent 9754743 commit 7477021
Showing 1 changed file with 3 additions and 12 deletions.
15 changes: 3 additions & 12 deletions primedev/core/filesystem/rpakfilesystem.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,19 +40,10 @@ class PakLoadManager
void UnloadModPaks();

// Whether the current context is a vanilla call to a function, or a modded one
bool IsVanillaCall() const
{
return m_reentranceCounter == 0;
}
bool IsVanillaCall() const { return m_reentranceCounter == 0; }
// Whether paks will be forced to reload on the next map load
bool GetForceReloadOnMapLoad() const
{
return m_forceReloadOnMapLoad;
}
void SetForceReloadOnMapLoad(bool value)
{
m_forceReloadOnMapLoad = value;
}
bool GetForceReloadOnMapLoad() const { return m_forceReloadOnMapLoad; }
void SetForceReloadOnMapLoad(bool value) { m_forceReloadOnMapLoad = value; }

void OnPakLoaded(std::string& originalPath, std::string& resultingPath, PakHandle resultingHandle);
void OnPakUnloading(PakHandle handle);
Expand Down

0 comments on commit 7477021

Please sign in to comment.