diff options
| author | Starla Insigna <starla4444@gmail.com> | 2013-08-25 14:41:26 -0400 |
|---|---|---|
| committer | Starla Insigna <starla4444@gmail.com> | 2013-08-25 14:41:26 -0400 |
| commit | 387685d34e6c4ebee776a700a01fed4df05446be (patch) | |
| tree | 1ce4f92037f77fbaee93225b44199cefa215f8f1 /hssubmit.cpp | |
| parent | 8ac5ac0365569cd8fab1ba6360a09e748a4fa299 (diff) | |
| download | mazeoflife-387685d34e6c4ebee776a700a01fed4df05446be.tar.gz mazeoflife-387685d34e6c4ebee776a700a01fed4df05446be.tar.bz2 mazeoflife-387685d34e6c4ebee776a700a01fed4df05446be.zip | |
Replaced internal resources with external ones for compatibility
Diffstat (limited to 'hssubmit.cpp')
| -rw-r--r-- | hssubmit.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
| diff --git a/hssubmit.cpp b/hssubmit.cpp index 690749a..7d4c551 100644 --- a/hssubmit.cpp +++ b/hssubmit.cpp | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | 2 | ||
| 3 | SubmitHighscoreListState::SubmitHighscoreListState(char* hsname, int level) | 3 | SubmitHighscoreListState::SubmitHighscoreListState(char* hsname, int level) |
| 4 | { | 4 | { |
| 5 | LOADIMAGE(pointer,pointer) | 5 | pointer = SDL_LoadBMP("pointer.bmp"); |
| 6 | 6 | ||
| 7 | this->hsname = hsname; | 7 | this->hsname = hsname; |
| 8 | this->level = level; | 8 | this->level = level; |
| @@ -38,9 +38,9 @@ int SubmitHighscoreListState::LoadHighscoreList(void* pParam) | |||
| 38 | 38 | ||
| 39 | if (lhl->hasFailed()) | 39 | if (lhl->hasFailed()) |
| 40 | { | 40 | { |
| 41 | LOADIMAGE(((SubmitHighscoreListState*)pParam)->options,hlo_passartm) | 41 | ((SubmitHighscoreListState*)pParam)->options = SDL_LoadBMP("hlo_passartm.bmp"); |
| 42 | } else { | 42 | } else { |
| 43 | LOADIMAGE(((SubmitHighscoreListState*)pParam)->options,hlo_paartm) | 43 | ((SubmitHighscoreListState*)pParam)->options = SDL_LoadBMP("hlo_paartm.bmp"); |
| 44 | } | 44 | } |
| 45 | 45 | ||
| 46 | SDL_Rect oSpace = {0, 440, ((SubmitHighscoreListState*)pParam)->options->w, ((SubmitHighscoreListState*)pParam)->options->h}; | 46 | SDL_Rect oSpace = {0, 440, ((SubmitHighscoreListState*)pParam)->options->w, ((SubmitHighscoreListState*)pParam)->options->h}; |
