diff options
| author | KyleMiles <krm504@nyu.edu> | 2023-06-29 20:49:26 -0400 |
|---|---|---|
| committer | KyleMiles <krm504@nyu.edu> | 2023-07-10 12:58:24 -0400 |
| commit | 04bc6f11ae0289aae57d63d4cd32f4ef305d1a7a (patch) | |
| tree | 46f06280b13fb80f2aebf0eea9b52f884e698d0c /python/examples/feature_map.py | |
| parent | 7598688466960427890036590239565364310171 (diff) | |
Move binary view loading in to the core; deprecate open_view in favor of load; update examples
Diffstat (limited to 'python/examples/feature_map.py')
| -rw-r--r-- | python/examples/feature_map.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/examples/feature_map.py b/python/examples/feature_map.py index 9884b510..e12508af 100644 --- a/python/examples/feature_map.py +++ b/python/examples/feature_map.py @@ -18,7 +18,7 @@ FeatureMapImportColor = (237, 189, 129) FeatureMapExternColor = (237, 189, 129) FeatureMapLibraryColor = (237, 189, 129) -bv = binaryninja.open_view(sys.argv[1], update_analysis=True) +bv = binaryninja.load(sys.argv[1], update_analysis=True) imgdata = [FeatureMapBaseColor]*(WIDTH*HEIGHT) |
