blob: 554c2d3f39f51c68a901a25f0b5a2d31d85abe3f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include <agbx-demo.h>
#include <ax/gfx.h>
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;}
}
else {
if (col == maxcol) {col = 0x0u;}
else {++col;}
}
_dat->col = col;
}
|