Fix code style
This commit is contained in:
parent
bcee6d4d39
commit
ea0d6b04d8
|
@ -153,13 +153,13 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
public static string GetPathFragmentForFrameNum(int index)
|
||||
{
|
||||
// not sure of the original purpose here, but the subfolders it makes don't seem to work right, just return frame number for now
|
||||
/*
|
||||
#if true
|
||||
return index.ToString();
|
||||
#else // not sure of the original purpose here, but the subfolders it makes don't seem to work right, just return frame number for now
|
||||
var chunks = StringChunkSplit(index.ToString(), 2);
|
||||
string subPath = string.Join("/", chunks);
|
||||
return subPath;
|
||||
*/
|
||||
return index.ToString();
|
||||
#endif
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue