1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-05 08:50:25 +00:00

Fixes missing #ifdef for sub__finishdrop();

This commit is contained in:
FellippeHeitor 2018-07-31 10:30:34 -03:00
parent 975408e2ef
commit 60d6aa7d27

View file

@ -26515,8 +26515,10 @@ void sub__filedrop(int32 on_off=NULL) {
}
void sub__finishdrop() {
DragFinish(hdrop);
totalDroppedFiles=0;
#ifdef QB64_WINDOWS
DragFinish(hdrop);
totalDroppedFiles=0;
#endif
}
int32 func__totaldroppedfiles() {