summaryrefslogtreecommitdiff
path: root/src/modules/plato/plato.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/plato/plato.c')
-rw-r--r--src/modules/plato/plato.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/modules/plato/plato.c b/src/modules/plato/plato.c
index ec53dd1..163a785 100644
--- a/src/modules/plato/plato.c
+++ b/src/modules/plato/plato.c
@@ -49,7 +49,6 @@
typedef struct plato_context_t {
- unsigned n_cpus;
float r;
} plato_context_t;
@@ -609,7 +608,7 @@ static void draw_polyhedron(const polyhedron_t *polyhedron, m4f_t *transform, ti
}
-static void * plato_create_context(unsigned ticks, unsigned num_cpus, til_setup_t *setup)
+static void * plato_create_context(unsigned ticks, unsigned n_cpus, til_setup_t *setup)
{
plato_context_t *ctxt;
@@ -617,8 +616,6 @@ static void * plato_create_context(unsigned ticks, unsigned num_cpus, til_setup_
if (!ctxt)
return NULL;
- ctxt->n_cpus = num_cpus;
-
return ctxt;
}
© All Rights Reserved