diff --git a/vdp1/normal_sprite_animated.cpp b/vdp1/normal_sprite_animated.cpp index 9009b93..06c068d 100644 --- a/vdp1/normal_sprite_animated.cpp +++ b/vdp1/normal_sprite_animated.cpp @@ -173,7 +173,7 @@ void main() // It appears Kronos does not correctly calculate the color address in the // VDP1 debugger. Kronos will report FFFC when the actual color table address // in this example is 7FFE0. - vdp1.vram.cmd[2].COLR = COLR__ADDRESS(color_address); // non-palettized (rgb15) color data + vdp1.vram.cmd[2].COLR = COLR__LOOKUP_TABLE__ADDRESS(color_address); // non-palettized (rgb15) color data vdp1.vram.cmd[2].SRCA = SRCA(character_address); vdp1.vram.cmd[2].SIZE = SIZE__X(sprite_width) | SIZE__Y(sprite_height); vdp1.vram.cmd[2].XA = 100;