Fix BitmapOverlay to have public constructor

This commit is contained in:
microkatz 2024-01-09 12:26:11 +00:00
parent d55b33474e
commit f0d24cbf58

View File

@ -44,7 +44,7 @@ public abstract class BitmapOverlay extends TextureOverlay {
private int lastTextureId;
private @Nullable Bitmap lastBitmap;
BitmapOverlay() {
public BitmapOverlay() {
lastTextureId = C.INDEX_UNSET;
}