diff options
Diffstat (limited to 'demo/source/chgcol.c')
-rw-r--r-- | demo/source/chgcol.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/demo/source/chgcol.c b/demo/source/chgcol.c index cbd653e..554c2d3 100644 --- a/demo/source/chgcol.c +++ b/demo/source/chgcol.c @@ -1,10 +1,10 @@ #include <agbx-demo.h> -#include <agbx/gfx.h> +#include <ax/gfx.h> -void agbxd_chgcol(agbxd_dat * _dat,agbx_i8 const _dir) { - constexpr agbx_i8 maxcol = 0x7u; - agbx_i8 col = _dat->col; +void axd_chgcol(axd_dat * _dat,ax_i8 const _dir) { + constexpr ax_i8 maxcol = 0x7u; + ax_i8 col = _dat->col; if (!_dir) { if (!col) {col = maxcol;} else {--col;} |