Poke_Transporter_GB/source/background_engine.cpp
Remnants of Forgotten Disney 68cdc3c121 Pokedex interface
2023-08-23 12:50:55 -05:00

17 lines
208 B
C++

#include <tonc.h>
#include <cstring>
#include "sprite_data.h"
#define CBB 0
#define SBB 24
int x, y;
void background_frame()
{
x++;
y++;
REG_BG0HOFS = x;
REG_BG0VOFS = y;
}