Thank you. :)
And in page 21
the code, in this loop is:
Code:
for (int y = -1; y <= resolutionHeight / backgroundTexture.Height; y++)
and the sample code in the book site is:
Code:
for (int y = -1; y <= resolutionHeight / backgroundTexture.Height +1; y++)
I thought maybe the typist made a mistake herer.