Conditional for a Single Post That Belongs to a Category?

You can combine conditions:

if ( ! empty ( $GLOBALS['post'] )
   && is_single()
   && in_category( 'gaming', $GLOBALS['post'] ) 
)
{
   // do something
}

See PHP manual: Logical Operators and Exclude custom function content from certain pages.