Changeset d8cf709 in opengl-game for opengl-game.cpp


Ignore:
Timestamp:
Feb 13, 2021, 11:41:39 PM (4 years ago)
Author:
Dmitry Portnoy <dportnoy@…>
Branches:
feature/imgui-sdl
Children:
c6f0793
Parents:
8b823e7
Message:

Change UIEvent to also include the original event from the UI library the game gui is currently using, such as SDL or GLFW.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • opengl-game.cpp

    r8b823e7 rd8cf709  
    160160
    161161void OpenGLGame::mainLoop() {
    162    UIEvent e;
     162   UIEvent uiEvent;
    163163   bool quit = false;
    164164
     
    166166      gui->processEvents();
    167167
    168       while (gui->pollEvent(&e)) {
     168      while (gui->pollEvent(&uiEvent)) {
     169         GameEvent& e = uiEvent.event;
     170
    169171         switch (e.type) {
    170172            case UI_EVENT_QUIT:
Note: See TracChangeset for help on using the changeset viewer.