Fix default cursor in html5 export.

This commit is contained in:
Raffaele Picca 2022-07-01 20:46:58 +02:00 committed by Relintai
parent 0da3dcc5b4
commit e12997ed02

View File

@ -325,7 +325,7 @@ static const char *pandemonium2dom_cursor(OS::CursorShape p_shape) {
switch (p_shape) {
case OS::CURSOR_ARROW:
default:
return "auto";
return "default";
case OS::CURSOR_IBEAM:
return "text";
case OS::CURSOR_POINTING_HAND: