diff options
-rw-r--r-- | src/game.cpp | 2 | ||||
-rw-r--r-- | src/graphic/graphic.cpp | 4 | ||||
-rw-r--r-- | tmw.ini | 26 |
3 files changed, 16 insertions, 16 deletions
diff --git a/src/game.cpp b/src/game.cpp index a07ad8e4..5f908289 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -213,7 +213,7 @@ void do_input() { } if(key[KEY_F1]) { - save_bitmap("./Graphic/screenshot.bmp",double_buffer,NULL); + save_bitmap("./data/graphic/screenshot.bmp", double_buffer, NULL); } else if(key[KEY_F12]){ sound.SetAdjVol( 1, 1, 1); } else if(key[KEY_F11]){ diff --git a/src/graphic/graphic.cpp b/src/graphic/graphic.cpp index 197866d7..af32dc63 100644 --- a/src/graphic/graphic.cpp +++ b/src/graphic/graphic.cpp @@ -204,7 +204,7 @@ void do_graphic(void) { node->text_x = (get_x(node->coordinates)-camera_x)*16-34+get_x_offset(node)-offset_x; node->text_y = (get_y(node->coordinates)-camera_y)*16-36+get_y_offset(node)-offset_y; masked_blit((BITMAP *)graphic[PLAYERSET_BMP].dat, buffer, 80*(get_direction(node->coordinates)/2), 60*(node->frame+node->action), node->text_x, node->text_y, 80, 60); - alfont_textprintf(buffer, gui_font, 0, 20, MAKECOL_WHITE, "%i %i", node->text_x,node->text_y); + //alfont_textprintf(buffer, gui_font, 0, 20, MAKECOL_WHITE, "%i %i", node->text_x,node->text_y); if(node->emotion!=0) { draw_sprite(buffer, (BITMAP *)emotions[node->emotion-1].dat, (get_x(node->coordinates)-camera_x)*16-5+get_x_offset(node)-offset_x, (get_y(node->coordinates)-camera_y)*16-45+get_y_offset(node)-offset_y); @@ -440,7 +440,7 @@ void do_graphic(void) { alfont_textprintf(double_buffer, gui_font, 0, 0, MAKECOL_WHITE, "FPS:%i", fps); - alfont_textprintf(double_buffer, gui_font, 0, 20, MAKECOL_WHITE, "%i", show_npc_dialog); + //alfont_textprintf(double_buffer, gui_font, 0, 20, MAKECOL_WHITE, "%i", show_npc_dialog); blit(double_buffer, screen, 0, 0, 0, 0, 800, 600); @@ -4,27 +4,27 @@ keyboard = en language = [server] -;host = animesites.de +host = animesites.de ;host = themanaworld.homeip.net -host = localhost +;host = localhost ;host = telekommunisten.dyndns.org port = 6901 [settings] -; = Screen mode: -; = 1 Fullscreen -; = 2 Windowed +; Screen mode: +; 1 Fullscreen +; 2 Windowed screen = 2 -; = Sound: -; = 1 enabled -; = 0 disabled +; Sound: +; 1 enabled +; 0 disabled sound = 0 -; = Chat logfile location: +; Chat logfile location: chatlog = chatlog.txt -; = Display strecth mode: -; = 0 Normal -; = 1 2xSaI -; = 2 SuperEagle +; Display strecth mode: +; 0 Normal +; 1 2xSaI +; 2 SuperEagle stretch = 1 [login] |