Skip to content

Commit

Permalink
Fixing varname for mExtraBitmap in onDraw()
Browse files Browse the repository at this point in the history
  • Loading branch information
Jocelyn Becker committed Jan 23, 2018
1 parent b5caa02 commit c5d58cd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ protected void onSizeChanged(int width, int height,
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
// Draw the bitmap where we are saving the path.
canvas.drawBitmap(mBitmap, 0, 0, null);
canvas.drawBitmap(mExtraBitmap, 0, 0, null);
}

// Variables for the latest x,y values,
Expand Down

0 comments on commit c5d58cd

Please sign in to comment.