From: Mikko Rasa Date: Sat, 15 Jan 2011 18:01:56 +0000 (+0000) Subject: A couple of minor temporary fixes X-Git-Url: http://git.tdb.fi/?a=commitdiff_plain;h=b3988eb3c4dcb52f99596ed53ce94473219a0940;p=r2c2.git A couple of minor temporary fixes --- diff --git a/Build b/Build index fbced14..c9a35d4 100644 --- a/Build +++ b/Build @@ -18,6 +18,8 @@ package "r2c2" { source "source/libr2c2"; require "mspdatafile"; + // XXX drivers should be made into plugins to avoid this dependency + require "mspnet"; install true; }; diff --git a/source/designer/designer.cpp b/source/designer/designer.cpp index 7d23042..2002bd9 100644 --- a/source/designer/designer.cpp +++ b/source/designer/designer.cpp @@ -556,7 +556,9 @@ void Designer::render() GL::Bind bind_blend(GL::Blend::alpha()); root.render(); + // XXX Should fix GLtk so these would not be needed GL::Texture::unbind(); + glColor3f(1.0, 1.0, 1.0); } void Designer::track_added(Track &trk)