summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core.cpp4
-rw-r--r--src/main.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/core.cpp b/src/core.cpp
index e40370e..d47127b 100644
--- a/src/core.cpp
+++ b/src/core.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright 2022-2023 Frederico de Oliveira Linhares
+ * Copyright 2022-2024 Frederico de Oliveira Linhares
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -117,7 +117,7 @@ load_game(void *obj)
using namespace std::chrono;
FILE *fp;
- mrb_value main_obj = mrb_obj_iv_inspect(cg_core.mrb, cg_core.mrb->top_self);
+ mrb_value main_obj{mrb_top_self(cg_core.mrb)};
cg_core.game_name = "CandyGear Game";
diff --git a/src/main.cpp b/src/main.cpp
index 75b7894..945928d 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright 2022 Frederico de Oliveira Linhares
+ * Copyright 2022-2024 Frederico de Oliveira Linhares
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -41,7 +41,7 @@ int main(int argc, char *argv[])
return 1;
}
- mrb_value main_obj{mrb_obj_iv_inspect(cg_core.mrb, cg_core.mrb->top_self)};
+ mrb_value main_obj{mrb_top_self(cg_core.mrb)};
mrb_funcall_id(cg_core.mrb, main_obj, cg_core.sym_init, 0);
if (cg_core.mrb->exc)