Index: /trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/gallium/test/d3d9main.cpp
===================================================================
--- /trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/gallium/test/d3d9main.cpp	(revision 84320)
+++ /trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/gallium/test/d3d9main.cpp	(revision 84321)
@@ -234,5 +234,8 @@
     miRenderId = atoi(p);
 
-    while (*p == ' ' || ('0' <= *p && *p <= '9'))
+    while ('0' <= *p && *p <= '9')
+        ++p;
+
+    while (*p == ' ')
         ++p;
 
@@ -308,5 +311,4 @@
                 {
                     fDoRender = TRUE;
-                    dt = fFirst ? 0.0f : 0.1f; /* 0.1 second increment per step. */
                 }
             }
@@ -319,4 +321,5 @@
         if (fDoRender)
         {
+            dt = fFirst ? 0.0f : 0.1f; /* 0.1 second increment per step. */
             if (mpRender)
             {
