10 is nicer

This commit is contained in:
Ned Williamson 2015-09-27 18:03:00 -04:00
parent 639d026073
commit e091a4c5e1
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
#include <bytes.hpp>
#include <name.hpp>
#define MAX_NUM_COLORS 5
#define MAX_NUM_COLORS 10
//#define DEBUG

View File

@ -80,7 +80,7 @@ Deps.autorun(function() { DA("send trail to ida");
for (var i = 0; i < trail.length; i++) {
var cldiff = trail[i][0];
var addr = trail[i][1];
if (-5 <= cldiff && cldiff <= 0) {
if (-10 <= cldiff && cldiff <= 0) {
s += cldiff + "," + addr + ";";
}
}