X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fgame_sp%2Fvb_lib.c;h=bab555171c4e3c730d4e7ab256ad3d92e10a8b86;hb=dec5093fc78bfe1356d764c2432fed6566b2af66;hp=f71693c0f73b5e0198b7655157b0fe8d3cf24076;hpb=e51177796149f37de339bda83558c3c49758be93;p=rocksndiamonds.git diff --git a/src/game_sp/vb_lib.c b/src/game_sp/vb_lib.c index f71693c0..bab55517 100644 --- a/src/game_sp/vb_lib.c +++ b/src/game_sp/vb_lib.c @@ -7,23 +7,9 @@ #include "vb_lib.h" -/* helper functions for constructs not supported by C */ +// helper functions for constructs not supported by C -#if 0 -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); -} -#endif - -long MyGetTickCount() +int MyGetTickCount(void) { return random_linux_libc(RANDOM_SIMPLE); }