Ignore:
Timestamp:
06/17/13 22:20:08 (12 years ago)
Author:
epyon
Message:
  • commiting the gui_element/gui_environment and gui_renderer in it's current state
  • the implementation is very WIP though, but too long stayed out of SVN
  • minor fix to c_file_system
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/io/c_file_system.cc

    r124 r126  
    3232stream* c_file_system::open( const char* fpath, const char* fmode /*= "rb" */ )
    3333{
    34         NV_ASSERT( fpath != nullptr && fpath != "" && fmode != nullptr );
     34        NV_ASSERT( fpath != nullptr && fpath != "" && fmode != nullptr, "Bad parameters passed to open" );
    3535        FILE* file = ::fopen( fpath, fmode );
    3636        if ( !file )
Note: See TracChangeset for help on using the changeset viewer.