physfs-cpp icon indicating copy to clipboard operation
physfs-cpp copied to clipboard

PhysFS++ is a C++ wrapper for the PhysicsFS library.

Results 6 physfs-cpp issues
Sort by recently updated
recently updated
newest added

Fix corrupted output when writing to stream due to incorrect buffer pointer handling. This will fix the issue described in #9

If data is larger than the buffer size, then what happens is that the first set of buffered data (2048 bytes) is written over and over again until the entire...

Getting some deprecated notices.

I'm aware that PhysicsFS runs sort of "globally" and can be implemented with just static functions, but wouldn't it make sense to bind the init and deinit to the constructor/destructor?...

Given code like this where the file doesn't exist: ``` try { PhysFS::ifstream file ("filename.txt"); } catch (std::invalid_argument e) { //do something here } ``` A bad access error will...