summary refs log tree commit diff stats
path: root/htpstate.cpp
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2009-06-20 10:25:34 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2009-06-20 10:25:34 -0400
commit11decc4e626d0f949d816d9760a1f4012e1769b7 (patch)
treed601bece713cec377e2876b72bcd87821e40c096 /htpstate.cpp
parent150a240098c3b45799ff04411715866b9dc58f4f (diff)
downloadmazeoflife-11decc4e626d0f949d816d9760a1f4012e1769b7.tar.gz
mazeoflife-11decc4e626d0f949d816d9760a1f4012e1769b7.tar.bz2
mazeoflife-11decc4e626d0f949d816d9760a1f4012e1769b7.zip
Replaced bitmaps with PNGs
Diffstat (limited to 'htpstate.cpp')
-rw-r--r--htpstate.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/htpstate.cpp b/htpstate.cpp index ad830da..f945b8f 100644 --- a/htpstate.cpp +++ b/htpstate.cpp
@@ -2,9 +2,9 @@
2 2
3HowToPlayState::HowToPlayState() 3HowToPlayState::HowToPlayState()
4{ 4{
5 background1 = SDL_LoadBMP("htp1.bmp"); 5 background1 = IMG_Load("htp1.png");
6 background2 = SDL_LoadBMP("htp2.bmp"); 6 background2 = IMG_Load("htp2.png");
7 pointer = SDL_LoadBMP("pointer.bmp"); 7 pointer = IMG_Load("pointer.png");
8 secondPage = false; 8 secondPage = false;
9 selection = 0; 9 selection = 0;
10 10