adopt code to new imgui and new sdl

This commit is contained in:
2024-01-17 22:39:51 +01:00
parent ca6909b64a
commit a15a9af2b3
3 changed files with 6 additions and 4 deletions

View File

@ -73,8 +73,8 @@ MainScreen::~MainScreen(void) {
bool MainScreen::handleEvent(SDL_Event& e) {
if (e.type == SDL_EVENT_DROP_FILE) {
std::cout << "DROP FILE: " << e.drop.file << "\n";
cg.sendFilePath(e.drop.file);
std::cout << "DROP FILE: " << e.drop.data << "\n";
cg.sendFilePath(e.drop.data);
_render_interval = 1.f/60.f; // TODO: magic
_time_since_event = 0.f;
return true; // TODO: forward return succ from sendFilePath()