mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-30 18:04:09 +03:00
Update region system to current codebase due to PR rot
This commit is contained in:
committed by
Misa Elizabeth Kai
parent
94620d809e
commit
dedf941b25
@@ -1271,6 +1271,15 @@ void Graphics::draw_grid_tile(
|
||||
draw_grid_tile(texture, t, x, y, width, height, color, 1, 1);
|
||||
}
|
||||
|
||||
void Graphics::draw_region_image(int t, int xp, int yp, int wp, int hp)
|
||||
{
|
||||
if (!INBOUNDS_ARR(t, customminimaps) || customminimaps[t] == NULL)
|
||||
{
|
||||
return;
|
||||
}
|
||||
draw_texture_part(customminimaps[t], xp, yp, 0, 0, wp, hp, 1, 1);
|
||||
}
|
||||
|
||||
void Graphics::cutscenebars(void)
|
||||
{
|
||||
const int usethispos = lerp(oldcutscenebarspos, cutscenebarspos);
|
||||
|
||||
Reference in New Issue
Block a user