summaryrefslogtreecommitdiff
path: root/liveengineUnmapped/src/playlist.cpp
diff options
context:
space:
mode:
authorComment <tim@gray.(none)>2013-12-18 01:59:44 +0000
committerComment <tim@gray.(none)>2013-12-18 01:59:44 +0000
commitb9cd2bc3e15dac4096571069f6a3a0dd238513d9 (patch)
tree1317a1629726492e4829842d4b7096acaa311a9f /liveengineUnmapped/src/playlist.cpp
parent87eadaa8e5a22ed6e79868c074f558d6dc6bdcf2 (diff)
sorted bad window placement once and for all
Diffstat (limited to 'liveengineUnmapped/src/playlist.cpp')
-rwxr-xr-xliveengineUnmapped/src/playlist.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/liveengineUnmapped/src/playlist.cpp b/liveengineUnmapped/src/playlist.cpp
index 683cd3c..61987d1 100755
--- a/liveengineUnmapped/src/playlist.cpp
+++ b/liveengineUnmapped/src/playlist.cpp
@@ -14,7 +14,7 @@ void playlist::load(string _name){
if( !XML.loadFile(_name) ){
printf("unable to load %s check data/ folder\n",_name.c_str());
}else {
- printf("starting loader thread\n");
+ //printf("starting loader thread\n");
loadimg(); //how to do this from the worker thread???
startThread(false, false); //blocking, verbose
}
@@ -27,6 +27,7 @@ void playlist::threadedFunction(){
if( lock() ){
loadLayers();
unlock();
+ printf("unlocking thread\n");
}
}