1
0
mirror of synced 2025-02-28 06:30:23 +01:00

The sram_path was using the eeprom_path. Fixed it.

This commit is contained in:
Rolel 2024-12-31 12:35:04 +01:00
parent 6eeaef6f5f
commit a08e113dc3

View File

@ -763,7 +763,7 @@ int readConfig(FILE *configFile, EmulatorConfig *config)
strcpy(config->eepromPath, getNextToken(NULL, " ", &saveptr));
else if (strcmp(command, "SRAM_PATH") == 0)
strcpy(config->eepromPath, getNextToken(NULL, " ", &saveptr));
strcpy(config->sramPath, getNextToken(NULL, " ", &saveptr));
else if (strcmp(command, "EMULATE_RIDEBOARD") == 0)
config->emulateRideboard = atoi(getNextToken(NULL, " ", &saveptr));