Skip to content

Commit

Permalink
Merge branch 'RUSJJ_CLEO_MOD' of https://github.com/AndroidModLoader/…
Browse files Browse the repository at this point in the history
…GTA_CLEOMod into RUSJJ_CLEO_MOD
  • Loading branch information
RusJJ committed May 4, 2024
2 parents eb183da + ebee059 commit 9d54815
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ extern unsigned char cleoData[100160];

// CLEO crashlogging
#define SCRIPTS_LOG_COUNT 32
bool scriptDebugger = true;
bool scriptDebugger = false;
void *lastScriptHandle[SCRIPTS_LOG_COUNT] = { NULL };
uint8_t *lastScriptPC[SCRIPTS_LOG_COUNT] = { NULL };
uint16_t lastScriptOp[SCRIPTS_LOG_COUNT] = { 0x0000 };
Expand Down Expand Up @@ -245,6 +245,7 @@ extern "C" void OnModPreLoad()
pCfgCLEOMenuColor = cfg->Bind("CLEO_MenuColor", "55 127 175 150");
pCfgCLEOMenuArrowColor = cfg->Bind("CLEO_MenuArrowColor", "55 127 175 100");
pCfgCLEOMenuArrowPressedAlpha = cfg->Bind("CLEO_MenuArrowPressedAlpha", "180");
scriptDebugger = cfg->GetBool("ScriptDebugger", scriptDebugger);

pCLEO = dlopen("libcleo.so", RTLD_LAZY);
if(!pCLEO)
Expand Down

0 comments on commit 9d54815

Please sign in to comment.