From 4ffb8c9ce364e2bed4439ec8ec5c133188a4179e Mon Sep 17 00:00:00 2001 From: Adam Powers Date: Sun, 30 Aug 2020 10:46:55 -0700 Subject: [PATCH] fix naming --- sys/lib/test/test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/lib/test/test.js b/sys/lib/test/test.js index 146b56d8a..d7d8f0144 100644 --- a/sys/lib/test/test.js +++ b/sys/lib/test/test.js @@ -19,7 +19,7 @@ function setGraphicsCallback() { console.log("doing call"); Module.ccall( - "stub_graphics_set_callback", // C function name + "shim_graphics_set_callback", // C function name null, // return type ["number"], // arg types [cb], // arg values @@ -153,7 +153,7 @@ function doGraphics(name, ... args) { // } // // console.log("Module", util.inspect(Module, {depth: null, showHidden: true})); // // TODO: -// // stub_graphics_set_callback(); +// // shim_graphics_set_callback(); // // options: // // https://emscripten.org/docs/api_reference/module.html