Ignore:
Timestamp:
06/15/13 17:47:57 (12 years ago)
Author:
epyon
Message:
  • Nova builds with -Weverything/-Wall/-pedantic/etc on: on MSVC 2012 on GCC 4.6.3 on clang 3.2
  • ... without a single fucking warning.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gui/gui_style.cc

    r114 r121  
    3636        for (size_t i = 0; i < 4; ++i )
    3737        {
    38                 lua_rawgeti( m_lua, -1, i+1 );
     38                lua_rawgeti( m_lua, -1, static_cast<int>( i+1 ) );
    3939                if ( lua_isnil( m_lua, -1 ) ) return true;
    4040                vec[i] = (float)lua_tonumber( m_lua, -1 );
Note: See TracChangeset for help on using the changeset viewer.