alex-ong / NESTrisOCR

OCR for statistics in NESTris
24 stars 7 forks source link

Combine capture_stats + stats_method #59

Open alex-ong opened 4 years ago

alex-ong commented 4 years ago

It currently takes two config line items, it should really be one. It will change all the logic, which does stupid shi tlike

if capture stats:
  if method == a:
    pass
  elif method == b
    pass

to

if method == NONE:
  pass
elif method == a:
  pass
elif method == b
  pass