Fixed byref variable pointer from rcbasic_build dev generator

This commit is contained in:
n00b
2024-09-16 22:20:09 -04:00
parent 526478b618
commit a5aedb1fa7
11 changed files with 2547 additions and 2515 deletions

View File

@@ -210,18 +210,18 @@ bool rc_gfx_init()
}
bool rc_gfx_quit()
void rc_gfx_quit()
{
irrtheora::stopVideo();
irrtheora::deleteVideo();
if(irrtheora::videoExists())
{
irrtheora::stopVideo();
irrtheora::deleteVideo();
}
if(device)
device->drop();
SDL_Quit();
return true;
}
bool rc_windowOpenEx(std::string title, int x, int y, int w, int h, uint32_t window_flags, irr::u8 AntiAlias, bool stencil_buffer, bool vsync)
@@ -330,6 +330,7 @@ void rc_closeWindow_hw()
rc_font.clear();
device->drop();
device = NULL;
}
void rc_cls()