diff options
author | Michele Calgaro <[email protected]> | 2020-01-30 20:17:32 +0900 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2021-02-02 00:33:10 +0100 |
commit | 7e66c403623bdb20b01ff05ebc5e2dfc30f15b3e (patch) | |
tree | 59a3ce045c4768ecdc5ea99da560934619fbb0a9 /examples/demo | |
parent | d8d67a842b11ba1b0c2ce83d7168670941499dbf (diff) | |
download | qt3-7e66c403623bdb20b01ff05ebc5e2dfc30f15b3e.tar.gz qt3-7e66c403623bdb20b01ff05ebc5e2dfc30f15b3e.zip |
Removed explicit usage of the 'register' keyword.
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 961eb3f6e276b4a3609328a3076ef790026e9c03)
Diffstat (limited to 'examples/demo')
-rw-r--r-- | examples/demo/opengl/fbm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/demo/opengl/fbm.c b/examples/demo/opengl/fbm.c index 47d5a61..dff1ccb 100644 --- a/examples/demo/opengl/fbm.c +++ b/examples/demo/opengl/fbm.c @@ -106,7 +106,7 @@ float noise3(float vec[3]) { int bx0, bx1, by0, by1, bz0, bz1, b00, b10, b01, b11; float rx0, rx1, ry0, ry1, rz0, rz1, *q, sy, sz, a, b, c, d, t, u, v; - register int i, j; + int i, j; if (start) { start = 0; |