Renaming udp.* to netdrv_udp.* to fit naming convention; Small menu ui fixes

This commit is contained in:
zicodxx 2008-01-29 15:57:59 +00:00
parent fe98538b2b
commit 8d025c7aef
5 changed files with 4 additions and 3 deletions

View file

@ -3,6 +3,7 @@ D1X-Rebirth Changelog
20080129
--------
SConstruct, arch/include/digi_audio.h, arch/include/digi_mixer.h, arch/include/digi_mixer_music.h, arch/include/event.h, arch/include/joy.h, arch/include/joystick.h, arch/include/jukebox.h, arch/include/key.h, arch/include/mouse.h, arch/linux/include/music.h, arch/ogl/gr.c, arch/ogl/ogl.c, arch/ogl/sdlgl.c, arch/sdl/mouse.c, include/internal.h, include/loadgl.h, include/ogl_init.h, main/kconfig.c: Cleanung up arch/ a little bit; Added mouse delta time interval for more more accurate reading at high FPS
SConstruct, main/netdrv_udp.c, main/netdrv_udp.h, main/newmenu.c: Renaming udp.* to netdrv_udp.c to fit naming convention; Small menu ui fixes
20080126
--------

View file

@ -124,6 +124,7 @@ common_sources = [
'main/multibot.c',
'main/multipow.c',
'main/netdrv.c',
'main/netdrv_udp.c',
'main/netlist.c',
'main/netpkt.c',
'main/network.c',
@ -148,7 +149,6 @@ common_sources = [
'main/texmerge.c',
'main/text.c',
'main/titles.c',
'main/udp.c',
'main/vclip.c',
'main/wall.c',
'main/weapon.c',

View file

@ -25,7 +25,7 @@
#include "netdrv.h"
#include "network.h"
#include "timer.h"
#include "udp.h"
#include "netdrv_udp.h"
#include "key.h"
#include "text.h"

View file

@ -81,7 +81,7 @@ grs_bitmap nm_background1;
#define MAXDISPLAYABLEITEMS 15
#define MESSAGEBOX_TEXT_SIZE 2176 // How many characters in messagebox (changed form 300 (fixes crash from show_game_score and friends) - 2000/01/18 Matt Mueller)
#define MAX_TEXT_WIDTH FONTSCALE_X((GameArg.GfxUseHiresFont)?240:120) // How many pixels wide a input box can be
#define MAX_TEXT_WIDTH FONTSCALE_X((GameArg.GfxUseHiresFont && SWIDTH>=640 && SHEIGHT>=480)?240:120) // How many pixels wide a input box can be
// ZICO - since the background is rescaled the bevels do the same. because of this we need bigger borders or the fonts would be printed inside the bevels...
#define MENSCALE_X ((double)(SWIDTH/320))