- Timestamp:
- 06/18/13 00:59:02 (12 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gfx/image.cc
r121 r128 12 12 : m_size( size ), m_depth( depth ), m_data( nullptr ) 13 13 { 14 m_data = new uint8[ static_cast<uint 16>( m_size.x * m_size.y ) * m_depth ];14 m_data = new uint8[ static_cast<uint32>( m_size.x * m_size.y ) * m_depth ]; 15 15 } 16 16 -
trunk/src/io/c_file_system.cc
r126 r128 32 32 stream* c_file_system::open( const char* fpath, const char* fmode /*= "rb" */ ) 33 33 { 34 NV_ASSERT( fpath != nullptr && f path != "" && fmode != nullptr, "Bad parameters passed to open" );34 NV_ASSERT( fpath != nullptr && fmode != nullptr, "Bad parameters passed to open" ); 35 35 FILE* file = ::fopen( fpath, fmode ); 36 36 if ( !file )
Note: See TracChangeset
for help on using the changeset viewer.