diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/graphic/graphic.cpp | 4 | ||||
-rw-r--r-- | src/gui/login.cpp | 1 |
2 files changed, 2 insertions, 3 deletions
diff --git a/src/graphic/graphic.cpp b/src/graphic/graphic.cpp index 7feba86b..50b1083c 100644 --- a/src/graphic/graphic.cpp +++ b/src/graphic/graphic.cpp @@ -358,8 +358,8 @@ new_tileset->spriteset[0]->draw(vbuffer, 0, 0); node->text_x = (get_x(node->coordinates)-camera_x)*16-22+get_x_offset(node)-offset_x; node->text_y = (get_y(node->coordinates)-camera_y)*16-25+get_y_offset(node)-offset_y; - int r_x = node->text_x-get_x_offset(node); - int r_y = node->text_y-get_y_offset(node); + //int r_x = node->text_x-get_x_offset(node); + //int r_y = node->text_y-get_y_offset(node); if(node->action==MONSTER_DEAD) new_monsterset->spriteset[(get_direction(node->coordinates)/2)+4*(node->job-1002)+8*MONSTER_DEAD]->draw(vbuffer, node->text_x, node->text_y); diff --git a/src/gui/login.cpp b/src/gui/login.cpp index 94c9729e..2f07090f 100644 --- a/src/gui/login.cpp +++ b/src/gui/login.cpp @@ -91,7 +91,6 @@ void login() { userField->setEventId("ok"); passField->setEventId("ok"); - keepCheck->setEventId("ok"); okButton->setEventId("ok"); cancelButton->setEventId("cancel"); |