X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fgame_sp%2Fvb_lib.c;h=16382f2b35ba59c23e91dd823f27d63fa323d749;hb=874229af6e5963fad61c9929a481cd99bebeac48;hp=f48ca3898f9f96ce7776677e3233e3b5658be3f3;hpb=4591885cdbcfec145d1ac0510fed1519af1eea1d;p=rocksndiamonds.git diff --git a/src/game_sp/vb_lib.c b/src/game_sp/vb_lib.c index f48ca389..16382f2b 100644 --- a/src/game_sp/vb_lib.c +++ b/src/game_sp/vb_lib.c @@ -9,19 +9,7 @@ /* helper functions for constructs not supported by C */ -void *REDIM_1D(int data_size, int first_data_pos, int last_data_pos) -{ - /* for a buffer of n elements, first_data_pos is 0 and last_data_pos is n-1 */ - /* a negative value for "first_data_pos" indicates a preceding buffer zone */ - - int data_count = last_data_pos - first_data_pos + 1; - int buffer_size = data_size * data_count; - int buffer_start = data_size * first_data_pos; - - return (checked_calloc(buffer_size) - buffer_start); -} - -long MyGetTickCount() +int MyGetTickCount(void) { return random_linux_libc(RANDOM_SIMPLE); }