Changeset 121 for trunk/src/gl/gl_window.cc
- Timestamp:
- 06/15/13 17:47:57 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gl/gl_window.cc
r98 r121 21 21 if (ke.keysym.unicode >= 32 && ke.keysym.unicode < 128 ) 22 22 { 23 kevent.key.ascii = (char)ke.keysym.unicode;23 kevent.key.ascii = static_cast<char8>( ke.keysym.unicode ); 24 24 } 25 25 … … 151 151 : m_device( dev ), m_width( width ), m_height( height ), m_title("NV Engine"), m_screen( nullptr ) 152 152 { 153 intflags = SDL_OPENGL;153 uint32 flags = SDL_OPENGL; 154 154 155 155 m_screen = SDL_SetVideoMode( width, height, 32, flags );
Note: See TracChangeset
for help on using the changeset viewer.