This website works better with JavaScript.
Home
Help
Sign In
lolengine
/
lol
mirror of
https://github.com/lolengine/lol
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
Browse Source
Properly initialise SDL in the input system's constructor.
legacy
Sam Hocevar
sam
14 years ago
parent
8bfb98c160
commit
172a256c89
1 changed files
with
2 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-1
src/sdlinput.cpp
+ 2
- 1
src/sdlinput.cpp
View File
@@ -29,8 +29,9 @@ private:
SdlInput::SdlInput(Game *game)
{
data = new SdlInputData(
);
SDL_Init(SDL_INIT_TIMER
);
data = new SdlInputData();
data->game = game;
}
Write
Preview
Loading…
Cancel
Save