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
app: warn about missing display/windowing library.
legacy
Sam Hocevar
6 years ago
parent
5e236e2bc3
commit
d42862b8ae
1 changed files
with
4 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-1
src/application/application.cpp
+ 4
- 1
src/application/application.cpp
View File
@@ -53,7 +53,10 @@ protected:
class null_app
{
public:
null_app(char const *, ivec2, float) {}
null_app(char const *, ivec2, float)
{
ASSERT(false, "no display library (SDL, EGL…) available");
}
virtual ~null_app() {}
void ShowPointer(bool) {}
Write
Preview
Loading…
Cancel
Save