Disabling error printout and giving the legal screen more space

This commit is contained in:
The Gears of Progress 2026-02-02 22:25:07 -05:00
parent 1862e4be83
commit e257bafb23
2 changed files with 2 additions and 2 deletions

View File

@ -214,7 +214,7 @@ int credits()
{
if (update)
{
create_textbox(4, 1, 160, 80, true);
create_textbox(1, 1, 200, 120, true);
show_text_box();
ptgb_write(credits_text_table.get_text_entry(curr_credits_num), true);
update = false;

View File

@ -191,7 +191,7 @@ def log_warning_error(lang, type, text):
nText = type + ": " + text
if nText not in mainDict[lang.name][nType].values():
mainDict[lang.name][nType][max(mainDict[lang.name][nType].keys(), default =- 1) + 1] = nText
print(nText)
#print(nText)
def hash_excel(path):
sheets = pd.read_excel(path, sheet_name=None)