X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=ent_skateshop.c;h=a4cfe22d526afb8cf1a20e9bd9c07468b6085fc6;hb=d680579754c876a74bf77ac74a224900ce0b3ff9;hp=56d8c01fe8557bcde628799fde5cb8c3d377f988;hpb=6190deb68aa1c9e92ede62ea05c2a755bf5516de;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/ent_skateshop.c b/ent_skateshop.c index 56d8c01..a4cfe22 100644 --- a/ent_skateshop.c +++ b/ent_skateshop.c @@ -27,7 +27,7 @@ static inline int const_str_eq( u32 hash, const char *str, const char *cmp ) return 0; } -VG_STATIC void skateshop_update_viewpage(void){ +static void skateshop_update_viewpage(void){ u32 page = global_skateshop.selected_board_id/SKATESHOP_VIEW_SLOT_MAX; for( u32 i=0; ient_marker, @@ -643,7 +645,7 @@ VG_STATIC void skateshop_render_worldshop( ent_skateshop *shop ){ /* * World: render event */ -VG_STATIC void skateshop_render( ent_skateshop *shop ){ +static void skateshop_render( ent_skateshop *shop ){ if( shop->type == k_skateshop_type_boardshop ) skateshop_render_boardshop( shop ); else if( shop->type == k_skateshop_type_charshop ) @@ -657,7 +659,7 @@ VG_STATIC void skateshop_render( ent_skateshop *shop ){ /* * Entity logic: entrance event */ -VG_STATIC void ent_skateshop_call( world_instance *world, ent_call *call ){ +static void ent_skateshop_call( world_instance *world, ent_call *call ){ u32 index = mdl_entity_id_id( call->id ); ent_skateshop *shop = mdl_arritm( &world->ent_skateshop, index ); vg_info( "skateshop_call\n" );