diff options
author | Eugenio Favalli <elvenprogrammer@gmail.com> | 2004-10-08 14:01:51 +0000 |
---|---|---|
committer | Eugenio Favalli <elvenprogrammer@gmail.com> | 2004-10-08 14:01:51 +0000 |
commit | 1e1e15dd3ab111383b27f09f70eb590878254e00 (patch) | |
tree | 9f47098a3c1758d6d49b40e3b02442e2cae8fe85 /src/gui/char_select.cpp | |
parent | 75da526f11f74b9bffb9580c2daf63108c294ca8 (diff) | |
download | mana-1e1e15dd3ab111383b27f09f70eb590878254e00.tar.gz mana-1e1e15dd3ab111383b27f09f70eb590878254e00.tar.bz2 mana-1e1e15dd3ab111383b27f09f70eb590878254e00.tar.xz mana-1e1e15dd3ab111383b27f09f70eb590878254e00.zip |
*** empty log message ***
Diffstat (limited to 'src/gui/char_select.cpp')
-rw-r--r-- | src/gui/char_select.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/gui/char_select.cpp b/src/gui/char_select.cpp index d7bc805d..61ba61ab 100644 --- a/src/gui/char_select.cpp +++ b/src/gui/char_select.cpp @@ -75,8 +75,7 @@ void char_select() { int gui_exit = 1; while ((!key[KEY_ESC])&&(gui_exit)&&(!key[KEY_ENTER])) { clear_bitmap(buffer); - if(stretch_mode!=0)blit((BITMAP *)graphic[LOGIN_BMP].dat, buffer, 0, 0, 0, 0, 800, 600); - else blit((BITMAP *)graphic[LOGIN_BMP].dat, buffer, 0, 0, -120, -90, 640, 480); + blit((BITMAP *)graphic[LOGIN_BMP].dat, buffer, 0, 0, 0, 0, 800, 600); gui_exit = gui_update(player); blit(buffer, screen, 0, 0, 0, 0, 800, 600); } @@ -163,8 +162,7 @@ void server_char_delete() { int gui_exit = 1; while ((!key[KEY_ESC])&&(gui_exit)) { clear_bitmap(buffer); - if(stretch_mode!=0)blit((BITMAP *)graphic[LOGIN_BMP].dat, buffer, 0, 0, 0, 0, 800, 600); - else blit((BITMAP *)graphic[LOGIN_BMP].dat, buffer, 0, 0, -120, -90, 640, 480); + blit((BITMAP *)graphic[LOGIN_BMP].dat, buffer, 0, 0, -120, -90, 640, 480); gui_exit = gui_update(player); blit(buffer, screen, 0, 0, 0, 0, 800, 600); } |