s/tea/gui

This commit is contained in:
Richard Feldman 2022-02-06 08:41:56 -05:00
parent 9871065a3a
commit 38145b363f
No known key found for this signature in database
GPG key ID: 7E4127D1E4241798
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@ use std::ffi::CStr;
use std::os::raw::c_char; use std::os::raw::c_char;
mod graphics; mod graphics;
mod tea; mod gui;
extern "C" { extern "C" {
#[link_name = "roc__renderForHost_1_exposed"] #[link_name = "roc__renderForHost_1_exposed"]
@ -164,7 +164,7 @@ pub extern "C" fn rust_main() -> i32 {
draw_elem(render(0)); draw_elem(render(0));
// tea::render(roc_str); gui::render(roc_str);
// Exit code // Exit code
0 0