- 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:
Martin Turski
2016-10-22 12:17:05 +02:00
parent c0adc2cb1b
commit c65708ff2e
5 changed files with 71 additions and 3 deletions

View File

@@ -834,7 +834,7 @@ StreamFile::tell(void)
bool
StreamFile::eof(void)
{
return feof(this->file);
return ( feof(this->file) != 0 );
}
bool

View File

@@ -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 */