- Corrects the "if (~eval)" displayed with print option in bytecode

time-shift
Ferhat Mihoubi 2011-01-31 17:44:22 +01:00
parent 3393eebf71
commit 66a7884a15
1 changed files with 1 additions and 1 deletions

View File

@ -2117,7 +2117,7 @@ print_expression(it_code_type it_code, bool evaluate, int size, int block_num, b
break;
case FJMPIFEVAL:
tmp_out.str("");
tmp_out << "if (evaluate)";
tmp_out << "if (~evaluate)";
go_on = false;
break;
case FJMP: