Custom EDIDs

This commit is contained in:
Cacodemon345
2025-08-26 01:42:59 +06:00
parent ad72731ecf
commit 74e3c83bed
5 changed files with 74 additions and 3 deletions

View File

@@ -201,6 +201,9 @@ extern int start_vmm; /* the current execution will start the manag
extern int portable_mode; /* we are running in portable mode
(global dirs = exe path) */
extern int monitor_edid; /* (C) Which EDID to use. 0=default, 1=custom. */
extern char monitor_edid_path[1024]; /* (C) Path to custom EDID */
#ifndef USE_NEW_DYNAREC
extern FILE *stdlog; /* file to log output to */
#endif

View File

@@ -22,5 +22,6 @@
extern void *ddc_init(void *i2c);
extern void ddc_close(void *eeprom);
extern void *ddc_create_default_edid(ssize_t* size_out);
#endif /*EMU_VID_DDC_H*/