X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=blobdiff_plain;f=src%2Fgame_sp%2Fvb_lib.c;fp=src%2Fgame_sp%2Fvb_lib.c;h=f7b402ae2135e77c8ee86c6ff6f2c063167f495a;hp=bdbe7691ce129799619bf0d8987e8cbd14cb3bf6;hb=3ff2e8a0b5c27b99a9920bdf5ed82bc41bf40181;hpb=7bf1759dc1f54495a7e16b32f08697b00661c32e diff --git a/src/game_sp/vb_lib.c b/src/game_sp/vb_lib.c index bdbe7691..f7b402ae 100644 --- a/src/game_sp/vb_lib.c +++ b/src/game_sp/vb_lib.c @@ -9,20 +9,6 @@ /* 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 - int MyGetTickCount() { return random_linux_libc(RANDOM_SIMPLE);