Add core name to GBA savestates

This commit is contained in:
adelikat 2015-06-06 21:06:59 +00:00
parent b9d9ffe7a5
commit 7e35ca00a8
1 changed files with 5 additions and 0 deletions

View File

@ -309,6 +309,11 @@ namespace BizHawk.Client.Common
name += "." + (Global.Emulator as LibsnesCore).CurrentProfile;
}
if (Global.Emulator.SystemId == "GBA")
{
name += "." + Global.Emulator.Attributes().CoreName;
}
if (Global.MovieSession.Movie.IsActive)
{
name += "." + Path.GetFileNameWithoutExtension(Global.MovieSession.Movie.Filename);