1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-08 05:35:16 +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() { void sub__finishdrop() {
DragFinish(hdrop); #ifdef QB64_WINDOWS
totalDroppedFiles=0; DragFinish(hdrop);
totalDroppedFiles=0;
#endif
} }
int32 func__totaldroppedfiles() { int32 func__totaldroppedfiles() {