Skip to content

Commit

Permalink
Better directory name.
Browse files Browse the repository at this point in the history
  • Loading branch information
yutokun committed Apr 6, 2019
1 parent 46786b8 commit d473711
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ScreenshotCapturer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ void Update()
if (Input.GetKeyDown(KeyCode.Space))
{
var currentDir = Directory.GetParent(Application.dataPath).ToString();
const string ssDir = "ScreenShots";
const string ssDir = "Screenshots";
Directory.CreateDirectory(Path.Combine(currentDir, ssDir));

var now = System.DateTime.Now.ToString().Replace("/", ".").Replace(":", ".");
Expand Down

0 comments on commit d473711

Please sign in to comment.