Add missing parameter to osd_set_shadowoffset call

This commit is contained in:
Rose 2024-01-14 23:42:58 +13:00
parent 617f318279
commit 78e358a4bd
Signed by: rosethorn
GPG key ID: DF8939388907D1F7

View file

@ -22,7 +22,7 @@ int main (int argc, char *argv[])
osd_set_textcolor(osd, "red", 100);
osd_set_bgcolor(osd, "black", 0);
osd_set_shadowcolor(osd, "lightblue", 100);
osd_set_shadowoffset(osd, 3);
osd_set_shadowoffset(osd, 3, 2);
char* message = "Hello world";
osd_display(osd, message, strlen(message));