/* call-seq:
 *   mode.width=(new_width)     -> new_width
 *
 * Video mode width, in pixels.
 */
static VALUE VideoMode_SetWidth( VALUE self, VALUE aValue )
{
        sf::VideoMode *object = NULL;
        Data_Get_Struct( self, sf::VideoMode, object );
        return INT2FIX( object->Width = NUM2UINT( aValue ) );
}