diff options
author | deva <deva> | 2006-07-25 16:36:50 +0000 |
---|---|---|
committer | deva <deva> | 2006-07-25 16:36:50 +0000 |
commit | 4bd6f4d67c3c19b8cf4da741ad4d8e7a417bcb91 (patch) | |
tree | 801fa683475b47590673e3c105f1cf2240cdccb6 /client | |
parent | 9c99d420b7adf0c1a82115f3e70a633f80ae8260 (diff) |
Removed the +0 whos only reason for being there was to utterly confuse the reader. ;)
Diffstat (limited to 'client')
-rw-r--r-- | client/xvaccelrenderer.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/xvaccelrenderer.cc b/client/xvaccelrenderer.cc index 208ea04..30ac78a 100644 --- a/client/xvaccelrenderer.cc +++ b/client/xvaccelrenderer.cc @@ -208,7 +208,7 @@ uint8_t XvAccelRender::GUI_XvInit(QWidget * window, uint32_t w, uint32_t h) for (k = 0; (k < curai->num_ports) && !port; k++) { if (GUI_XvList(WDN, k + curai->base_id, &xv_format)) - port = k + curai->base_id + 0; // FIXME: TODO: HACK: It works when +1 is applied! But why!? + port = k + curai->base_id; } |