Skip to content

Commit

Permalink
(libretro) fix eeprom path creation on wii u
Browse files Browse the repository at this point in the history
  • Loading branch information
barbudreadmon committed Jun 17, 2020
1 parent e5fbb8a commit 5b472aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/burner/libretro/libretro.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1320,7 +1320,7 @@ static bool retro_load_game_common()
}

// Initialize EEPROM path
snprintf (szAppEEPROMPath, sizeof(szAppEEPROMPath), "%s%cfbneo%c", g_save_dir, path_default_slash_c(), path_default_slash_c());
snprintf (szAppEEPROMPath, sizeof(szAppEEPROMPath), "%s%cfbneo", g_save_dir, path_default_slash_c());

// Create EEPROM path if it does not exist
path_mkdir(szAppEEPROMPath);
Expand Down

0 comments on commit 5b472aa

Please sign in to comment.