Skip to content

Commit 6611163

Browse files
committed
added some hints in sides fixing
1 parent a924329 commit 6611163

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Dynamix_chart_width_control/main.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ int main(int argc, char* argv[])
261261
if (fail_read & LEFT_SIDE_MISSING) {
262262
sides s = sides::UNKNOWN;
263263
string side_string;
264-
cout << "Left side type is not specified! Please enter a valid side type:" << endl;
264+
cout << "Left side type is not specified! Please enter a valid side type (pad, mixer, multi):" << endl;
265265
while (s == sides::UNKNOWN) {
266266
cin >> side_string;
267267
//lowercase
@@ -279,7 +279,7 @@ int main(int argc, char* argv[])
279279
s = sides::MULTI;
280280
}
281281
else {
282-
cout << "Invalid side type! Please enter again!" << endl;
282+
cout << "Invalid side type! Please enter again! (pad, mixer, multi)" << endl;
283283
}
284284
}
285285
cs.set_lside(s);
@@ -291,7 +291,7 @@ int main(int argc, char* argv[])
291291
if (fail_read & RIGHT_SIDE_MISSING) {
292292
sides s = sides::UNKNOWN;
293293
string side_string;
294-
cout << "Right side type is not specified! Please enter a valid side type:" << endl;
294+
cout << "Right side type is not specified! Please enter a valid side type (pad, mixer, multi):" << endl;
295295
while (s == sides::UNKNOWN) {
296296
cin >> side_string;
297297
//lowercase
@@ -308,7 +308,7 @@ int main(int argc, char* argv[])
308308
s = sides::MULTI;
309309
}
310310
else {
311-
cout << "Invalid side type! Please enter again!" << endl;
311+
cout << "Invalid side type! Please enter again! (pad, mixer, multi)" << endl;
312312
}
313313
}
314314
cs.set_rside(s);

0 commit comments

Comments
 (0)