eeprom settings with default

In the code below, how do I add a default value, so that if the settings are deleted from eeprom, a default value will be given? I want these default values:
MySettings.lightLevel = 800
MySettings.motor_delay = 40

struct config_settings {
    int mySensVals[12];  //# of pulses in 2-12 cups 
    int motor_delay;     //change the distance the platform travels
    int lightLevel;         //photocell trigger level
    boolean Enable_Audio;  //whether the user wants sound
    boolean Enable_Piezo;  //whether the user wants a knock sensor
    boolean Enable_PhotoCell;  //whether the user wants to use the photocell
} MySettings;

void LoadSettings(){
  EEPROM_readAnything(0, MySettings);   //load the settings
}

void SaveSettings(){
  EEPROM_writeAnything(0, MySettings);  //save the settings
}

In the code below, how do I add a default value, so that if the settings are deleted from eeprom, a default value will be given?

How would they be deleted? If you don't provide code to delete what is in EEPROM, what is there is what you wrote last time.

If you want to ensure that data has been stored there before using what you read, you should add a char array to the structure, at the beginning. Test if what is read from the EEPROM is some specific value (your application's name, for instance). If so, use what is there. Otherwise, assign specific values to the variables.