summaryrefslogtreecommitdiff
path: root/src/graphic.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/graphic.cpp')
-rw-r--r--src/graphic.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/graphic.cpp b/src/graphic.cpp
index f27fff7..a991130 100644
--- a/src/graphic.cpp
+++ b/src/graphic.cpp
@@ -24,7 +24,7 @@ cg_mCandyGear_set_display_width(mrb_state *mrb, mrb_value self)
mrb_int width;
mrb_get_args(mrb, "i", &width);
- cg_core.display_width = width;
+ BluCat::core.display_width = width;
return self;
}
@@ -35,7 +35,7 @@ cg_mCandyGear_set_display_height(mrb_state *mrb, mrb_value self)
mrb_int height;
mrb_get_args(mrb, "i", &height);
- cg_core.display_height = height;
+ BluCat::core.display_height = height;
return self;
}
@@ -46,7 +46,7 @@ cg_mCandyGear_set_fps(mrb_state *mrb, mrb_value self)
mrb_int fps;
mrb_get_args(mrb, "i", &fps);
- cg_core.fps = fps;
+ BluCat::core.fps = fps;
return self;
}