summaryrefslogtreecommitdiff
path: root/memview.h
diff options
context:
space:
mode:
authorthe lemons <citrons@mondecitronne.com>2023-02-07 18:07:48 -0600
committerthe lemons <citrons@mondecitronne.com>2023-02-07 18:07:48 -0600
commitc651762762dd9463aacecd703b31d81042a42473 (patch)
tree0418a376172a0d5c3688ec2b1f6308e1d5b9c3b8 /memview.h
parent4300520103c7196764561cdf7d34734495d708c0 (diff)
add drawing
Diffstat (limited to 'memview.h')
-rw-r--r--memview.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/memview.h b/memview.h
index 2a73ec4..47aab27 100644
--- a/memview.h
+++ b/memview.h
@@ -23,6 +23,7 @@ void destroy_viewer(struct viewer *v);
bool render_pages(struct viewer *v,
int x, int y, int width, int height, double scale, bool refresh);
-void pencil(struct viewer *v, int x1, int y1, int x2, int y2, bool bit);
+void pencil(struct viewer *v,
+ double x1, double y1, double x2, double y2, bool bit);
#endif