mirror of
https://github.com/aap/librw.git
synced 2025-12-18 16:39:51 +00:00
- improved project file structure
- added common IDE generated files to .gitignore so they do not pop up in commit dialogs anymore - fixed some warnings in code files
This commit is contained in:
@@ -834,7 +834,7 @@ StreamFile::tell(void)
|
||||
bool
|
||||
StreamFile::eof(void)
|
||||
{
|
||||
return feof(this->file);
|
||||
return ( feof(this->file) != 0 );
|
||||
}
|
||||
|
||||
bool
|
||||
|
||||
@@ -93,7 +93,7 @@ Texture *readNativeTexture(Stream *stream);
|
||||
void writeNativeTexture(Texture *tex, Stream *stream);
|
||||
uint32 getSizeNativeTexture(Texture *tex);
|
||||
|
||||
enum {
|
||||
enum : rw::uint32 {
|
||||
D3DFMT_UNKNOWN = 0xFFFFFFFF,
|
||||
|
||||
/* Swizzled formats */
|
||||
|
||||
Reference in New Issue
Block a user