aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2020-12-14 08:18:24 +0100
committerdec05eba <dec05eba@protonmail.com>2020-12-14 08:18:24 +0100
commit88fed1806e56181a9161c20bcd93cd06d52a5533 (patch)
tree99f5d1ed9901c0de53b0f07b7f34ae9127a4db70 /src/main.cpp
parent484571d6f5bc71626f320b4dc06b43331d7f1240 (diff)
Attempt to fix spastic body when using embedded items and loading them in render callback, fix gif play next on 4chan.. test
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 3383363..869b165 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -1,12 +1,12 @@
#include "../include/QuickMedia.hpp"
-#include <X11/Xlib.h>
+//#include <X11/Xlib.h>
#include <libgen.h>
#include <unistd.h>
int main(int argc, char **argv) {
chdir(dirname(argv[0]));
setlocale(LC_ALL, "C"); // Sigh... stupid C
- XInitThreads();
+ //XInitThreads();
QuickMedia::Program program;
return program.run(argc, argv);
}