entry: Drop file event for SDL.

This commit is contained in:
Branimir Karadžić
2018-01-03 22:49:10 -08:00
parent d616ed345b
commit 8c91699678
2 changed files with 22 additions and 0 deletions

View File

@@ -746,6 +746,10 @@ restart:
break;
case Event::DropFile:
{
const DropFileEvent* drop = static_cast<const DropFileEvent*>(ev);
DBG("%s", drop->m_filePath.get() );
}
break;
default:
@@ -904,6 +908,10 @@ restart:
break;
case Event::DropFile:
{
const DropFileEvent* drop = static_cast<const DropFileEvent*>(ev);
DBG("%s", drop->m_filePath.get() );
}
break;
default: