|
@@ -982,7 +982,7 @@ class Memory {
|
|
return args;
|
|
return args;
|
|
}
|
|
}
|
|
|
|
|
|
- static var useColor = false;
|
|
|
|
|
|
+ static var useColor = true;
|
|
static function main() {
|
|
static function main() {
|
|
var m = new Memory();
|
|
var m = new Memory();
|
|
var others: Array<Memory> = [];
|
|
var others: Array<Memory> = [];
|
|
@@ -999,8 +999,10 @@ class Memory {
|
|
m.loadBytecode(arg);
|
|
m.loadBytecode(arg);
|
|
continue;
|
|
continue;
|
|
}
|
|
}
|
|
- if( arg == "-c" || arg == "--color" ) {
|
|
|
|
- useColor = true;
|
|
|
|
|
|
+ if( arg == "-c" || arg == "--color" )
|
|
|
|
+ continue;
|
|
|
|
+ if( arg == "--no-color" ) {
|
|
|
|
+ useColor = false;
|
|
continue;
|
|
continue;
|
|
}
|
|
}
|
|
if( arg == "--args" ) {
|
|
if( arg == "--args" ) {
|