Simplify terml_get function

This commit is contained in:
Shylie 2024-03-09 09:47:47 -05:00
parent 2210bf7d69
commit 35a7d4629a
2 changed files with 3 additions and 3 deletions

View File

@ -27,7 +27,7 @@ int terml_deinit();
unsigned int terml_get_width();
unsigned int terml_get_height();
int terml_get(unsigned int x, unsigned int y, const tcell** cell);
int terml_get(unsigned int x, unsigned int y, tcell* cell);
int terml_set(unsigned int x, unsigned int y, tcell cell);
void terml_flush();

View File

@ -319,7 +319,7 @@ extern "C"
return TERML_G->get_height();
}
int terml_get(unsigned int x, unsigned int y, const tcell** cell)
int terml_get(unsigned int x, unsigned int y, tcell* cell)
{
if (x >= TERML_G->get_width() || y >= TERML_G->get_height())
{
@ -333,7 +333,7 @@ extern "C"
}
else
{
*cell = &TERML_G->get(x, y);
*cell = TERML_G->get(x, y);
return 0;
}
}