]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
moved shownetgraph to right side of screen
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Tue, 17 Apr 2007 05:54:26 +0000 (05:54 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Tue, 17 Apr 2007 05:54:26 +0000 (05:54 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7112 d7cf8633-e32d-0410-b094-e92efae38249

cl_screen.c
todo

index 869b893f033501c99a5ec95f6d4f173b1d3d2242..183519902eb4810ae8975066095707d61e11fb41 100644 (file)
@@ -260,8 +260,8 @@ void SCR_DrawNetGraph (void)
        barwidth = 1;
        barheight = 50;
        bardivide = 20;
-       netgraph_x = 0;
-       netgraph_y = vid_conheight.integer - 48 - barheight - textsize;
+       netgraph_x = vid_conwidth.integer - (barwidth * NETGRAPH_PACKETS * 2 + separator);
+       netgraph_y = vid_conheight.integer - (48 + barheight + textsize);
        SCR_DrawNetGraph_DrawConnection(cls.netcon, netgraph_x, netgraph_y, barwidth, barheight, bardivide, "incoming", separator, "outgoing", textsize);
 }
 
diff --git a/todo b/todo
index dbdfd59ab828bf2ce10b255aff4d02706b66d9c6..2cca27b15a81064557492c7f6474e5f4947f7e0e 100644 (file)
--- a/todo
+++ b/todo
@@ -1,7 +1,9 @@
+
 - todo: difficulty ratings are: 0 = trivial, 1 = easy, 2 = easy-moderate, 3 = moderate, 4 = moderate-hard, 5 = hard, 6 = hard++, 7 = nightmare, d = done, -d = done but have not notified the people who asked for it, f = failed, -f = failed but have not notified the people who asked for it
 0 bug darkplaces client: can't move mouse around in nexuiz menu if vid_mouse is 0
 0 bug darkplaces client: decals are not sticking to submodels
 0 bug darkplaces client: if you press 1 during the demo loop when quake starts, escape doesn't do anything until you hit some other key (daemon)
+0 bug darkplaces loader: crash when a mdl model has more replacement skins than the model contains (Lardarse)
 0 bug darkplaces loader: make rtlight entity loader support q3map/q3map2 lights properly, they use a spawnflag for LINEAR mode, by default they use 1/(x*x) falloff (Carni, motorsep)
 0 bug darkplaces loader: mcbsp hull selection is ignoring the custom hulls supported by mcbsp (div0)
 0 bug darkplaces loader: q1bsp loader computes wrong submodel size for submodels with no surfaces, such as a func_wall comprised entirely of SKIP or CAULK brushes (neg|ke)