summaryrefslogtreecommitdiff
path: root/src/graphics_c3.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/graphics_c3.c')
-rw-r--r--src/graphics_c3.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/graphics_c3.c b/src/graphics_c3.c
index 3240058..0727fd7 100644
--- a/src/graphics_c3.c
+++ b/src/graphics_c3.c
@@ -476,7 +476,7 @@ void redraw() {//something is requesting a redraw.
}
}
-int graphics_init() {
+int graphics_init() {//return the fd needed to read graphics events.
//some of these values set
global.zoom=25.0l;//I think if this is set to 1, then 1 3d unit is 1 2d unit?
global.camera.r.x.d=0;
@@ -515,6 +515,5 @@ int graphics_init() {
gra_global.drawminimap=DEFAULT_MINIMAP;
gra_global.draw3d=2;
gra_global.force_redraw=FORCE_REDRAW;
- graphics_sub_init();
- return 0;//we're fine
+ return graphics_sub_init();
}