From 13cd47e35fa5115d310cacfa433d84825179dd71 Mon Sep 17 00:00:00 2001 From: imterah Date: Sun, 8 Jun 2025 18:21:32 -0400 Subject: [PATCH] fix: Fixes dumping custom EDID firmware for no reason --- main.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/main.py b/main.py index 53a1447..5ab9ef7 100755 --- a/main.py +++ b/main.py @@ -145,11 +145,6 @@ def main(): # TODO: implement EDID patching for overridden displays logger.info("Patching EDID firmware") patched_edid = libunreal.patch_edid_to_be_specialized(edid.edid) - logger.debug("dumping custom fw") - - with open("/tmp/fw.bin", "wb") as fw_dump: - fw_dump.write(patched_edid) - libunreal.upload_edid_firmware(edid, patched_edid) def unload_custom_fw():