Hello~!
Excuse my english~ But I've made simple TCP/IP game...works good, but when both characters move at once it flickers...why?! thanks~
edit: I using bitblt by the way..
Printable View
Hello~!
Excuse my english~ But I've made simple TCP/IP game...works good, but when both characters move at once it flickers...why?! thanks~
edit: I using bitblt by the way..
Are you blitting right to the screen or to a backbuffer?
To the screen.Quote:
Originally posted by Machaira
Are you blitting right to the screen or to a backbuffer?
Use a backbuffer instead. Then blit the entire backbuffer to the main screen.
For instance, have two forms, a backbuffer form (not visible) and blit everything to that. Make sure its the same size. then, when all the blitting has been done to the backbuffer, blit the backbuffer to the main form.
you don't even need a form. Just a create a bitmap at runtime, then blit to its dc.