1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-04 04:50:22 +00:00

missing call to sub__dest??

This commit is contained in:
SteveMcNeill 2023-10-18 08:49:42 -04:00
parent 9854955d99
commit 7345839b75

View file

@ -14689,6 +14689,7 @@ void qbg_sub_locate(int32 row, int32 column, int32 cursor, int32 start, int32 st
void sub_clsDest(int32 method, uint32 use_color, int32 dest, int32 passed) {
int32 tempDest;
tempDest = func__dest();
sub__dest(dest);
sub_cls(method, use_color, passed);
sub__dest(tempDest);
}