From 730e2b54cd5542a07a55dc44a57ab3f12cd70337 Mon Sep 17 00:00:00 2001 From: realtradam Date: Thu, 5 Jan 2023 03:47:22 -0500 Subject: update engine + cleaning --- src/main.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src') diff --git a/src/main.c b/src/main.c index 586d476..6a0f475 100644 --- a/src/main.c +++ b/src/main.c @@ -1,13 +1,13 @@ #include #include -#include "SDL2/SDL.h" -#include "SDL2/SDL_syswm.h" -#include "bgfx/c99/bgfx.h" +//#include "SDL2/SDL.h" +//#include "SDL2/SDL_syswm.h" +//#include "bgfx/c99/bgfx.h" #include "rodeo.h" -Rodeo__Data_t _state = {0}; -Rodeo__Data_t* state = &_state; +Rodeo__data_t _state = {0}; +Rodeo__data_t *state = &_state; int main() @@ -18,7 +18,7 @@ main() { Rodeo__begin(state); - bgfx_dbg_text_printf(0, 2, 0x6f, "Description: Initialization and debug text."); + Rodeo__draw_debug_text(1, 1, "Debug %s Test", "Text"); Rodeo__end(state); } -- cgit v1.2.3