diff options
| author | Rémi Verschelde | 2017-04-24 11:04:16 +0200 |
|---|---|---|
| committer | GitHub | 2017-04-24 11:04:16 +0200 |
| commit | d7578792ca75571cedbf6f4cf98315ec3141e1b6 (patch) | |
| tree | 3e35f189cac469fb81b7450827c3f7037d12792b /modules/dds/texture_loader_dds.cpp | |
| parent | 4c147008f33773bb385c6a67b1a7394ddbef6126 (diff) | |
| parent | 515f92d03b6bb4e8a42d5b88d603c96c69d233a4 (diff) | |
| download | godot-d7578792ca75571cedbf6f4cf98315ec3141e1b6.tar.gz godot-d7578792ca75571cedbf6f4cf98315ec3141e1b6.tar.zst godot-d7578792ca75571cedbf6f4cf98315ec3141e1b6.zip | |
Merge pull request #8496 from akien-mga/stdout-cleanup
Fix property warnings and hide some debug prints
Diffstat (limited to 'modules/dds/texture_loader_dds.cpp')
| -rw-r--r-- | modules/dds/texture_loader_dds.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/modules/dds/texture_loader_dds.cpp b/modules/dds/texture_loader_dds.cpp index f80e6e501..d79b7685d 100644 --- a/modules/dds/texture_loader_dds.cpp +++ b/modules/dds/texture_loader_dds.cpp @@ -144,12 +144,14 @@ RES ResourceFormatDDS::load(const String &p_path, const String &p_original_path, f->get_32(); f->get_32(); - /*print_line("DDS width: "+itos(width)); + /* + print_line("DDS width: "+itos(width)); print_line("DDS height: "+itos(height)); - print_line("DDS mipmaps: "+itos(mipmaps));*/ + print_line("DDS mipmaps: "+itos(mipmaps)); - //printf("fourcc: %x fflags: %x, rgbbits: %x, fsize: %x\n",format_fourcc,format_flags,format_rgb_bits,format_size); - //printf("rmask: %x gmask: %x, bmask: %x, amask: %x\n",format_red_mask,format_green_mask,format_blue_mask,format_alpha_mask); + printf("fourcc: %x fflags: %x, rgbbits: %x, fsize: %x\n",format_fourcc,format_flags,format_rgb_bits,format_size); + printf("rmask: %x gmask: %x, bmask: %x, amask: %x\n",format_red_mask,format_green_mask,format_blue_mask,format_alpha_mask); + */ //must avoid this later while (f->get_pos() < 128) |
