Fixed bug with screenshot capture always using smart capture (assignment instead of comparison).

master
Colin 2015-10-26 21:39:35 -07:00
parent f91f5563bc
commit 0ac7610358
1 changed files with 1 additions and 1 deletions

View File

@ -298,7 +298,7 @@ void CaptureImageAction() {
char toggle;
printf("Use smart capture? y/n ");
cin >> toggle;
if (toggle = 'y') {
if (toggle == 'y') {
string resolution;
printf("Enter a resolution.\n Examples: 4096x4096, 2560x1920, 3840x2160, 3840x1080\n");
printf("Resolution = ");