Skip to content

Commit

Permalink
Boy what the hell (unbreak mods and DynOS packs)
Browse files Browse the repository at this point in the history
They dug me out of my grave and told me `configSkipPackGeneration`. My heart sank.
This feature would have been fine if it was off by default and if it wasn't then people caught it before the version was officially released and the option was promptly disabled without a massive pool of people having this option turned on by default.
So I will say, Coolio wasn't really in the wrong by adding this, it should have never been changed to be on by default.
  • Loading branch information
AgentXLP committed Feb 14, 2025
1 parent 39ab128 commit abf818b
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 6 deletions.
2 changes: 1 addition & 1 deletion data/dynos_bin_col.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ static void ValidateColSectionChange(GfxData* aGfxData, struct CollisionValidati
PrintDataError("Improper triangle count found in section. Allocated: %u, Defined: %u", aColValData.triAlloc, aColValData.triCount);
}
if (aColValData.specialAlloc != aColValData.specialCount) {
PrintDataError("Improper sepcial count found in section. Allocated: %u, Defined: %u", aColValData.triAlloc, aColValData.triCount);
PrintDataError("Improper special count found in section. Allocated: %u, Defined: %u", aColValData.triAlloc, aColValData.triCount);
}
if (aColValData.waterBoxAlloc != aColValData.waterBoxCount) {
PrintDataError("Improper water box count found in section. Allocated: %u, Defined: %u", aColValData.waterBoxAlloc, aColValData.waterBoxCount);
Expand Down
2 changes: 0 additions & 2 deletions data/dynos_gfx_init.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ extern "C" {
}

void DynOS_Gfx_GeneratePacks(const char* directory) {
if (configSkipPackGeneration) { return; }

LOADING_SCREEN_MUTEX(
loading_screen_reset_progress_bar();
snprintf(gCurrLoadingSegment.str, 256, "Generating DynOS Packs In Path:\n\\#808080\\%s", directory);
Expand Down
2 changes: 0 additions & 2 deletions src/pc/configfile.c
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,6 @@ unsigned int configDjuiScale = 0;
// other
unsigned int configRulesVersion = 0;
bool configCompressOnStartup = false;
bool configSkipPackGeneration = true;

// secrets
bool configExCoopTheme = false;
Expand Down Expand Up @@ -320,7 +319,6 @@ static const struct ConfigOption options[] = {
// other
{.name = "rules_version", .type = CONFIG_TYPE_UINT, .uintValue = &configRulesVersion},
{.name = "compress_on_startup", .type = CONFIG_TYPE_BOOL, .boolValue = &configCompressOnStartup},
{.name = "skip_pack_generation", .type = CONFIG_TYPE_BOOL, .boolValue = &configSkipPackGeneration},
};

struct SecretConfigOption {
Expand Down
1 change: 0 additions & 1 deletion src/pc/configfile.h
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,6 @@ extern unsigned int configDjuiScale;
// other
extern unsigned int configRulesVersion;
extern bool configCompressOnStartup;
extern bool configSkipPackGeneration;

// secrets
extern bool configExCoopTheme;
Expand Down

0 comments on commit abf818b

Please sign in to comment.