Skip to content

Commit

Permalink
Fixes bug where drawing function drawed incorrect number of pixels for
Browse files Browse the repository at this point in the history
sprites
  • Loading branch information
Stanislav Yaglo committed Feb 4, 2014
1 parent 4917a7b commit 776d2ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fce.c
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ void fce_update_screen()
}

if (ppu_shows_sprites()) {
al_draw_prim(ppu_sprite_pixels, NULL, NULL, 0, ppu_background_pixels_number, ALLEGRO_PRIM_POINT_LIST);
al_draw_prim(ppu_sprite_pixels, NULL, NULL, 0, ppu_sprite_pixels_number, ALLEGRO_PRIM_POINT_LIST);
}

// int ntrecordsize = 4;
Expand Down

0 comments on commit 776d2ca

Please sign in to comment.