Browse Source

Removing contextual comment

Guilherme Fernandes 2 years ago
parent
commit
535d290293
1 changed files with 0 additions and 2 deletions
  1. 0 2
      vendor/raylib/raygui.odin

+ 0 - 2
vendor/raylib/raygui.odin

@@ -243,12 +243,10 @@ foreign lib {
     // Icons functionality
     // Icons functionality
     
     
     GuiIconText         :: proc(iconId: c.int, text: cstring) -> cstring ---                                  // Get text with icon id prepended (if supported)
     GuiIconText         :: proc(iconId: c.int, text: cstring) -> cstring ---                                  // Get text with icon id prepended (if supported)
-    // #if !defined(RAYGUI_NO_ICONS)
     GuiSetIconScale     :: proc(scale: c.int) ---                                                             // Set default icon drawing size
     GuiSetIconScale     :: proc(scale: c.int) ---                                                             // Set default icon drawing size
     GuiGetIcons         :: proc() -> [^]u32 ---                                                               // Get raygui icons data pointer
     GuiGetIcons         :: proc() -> [^]u32 ---                                                               // Get raygui icons data pointer
     GuiLoadIcons        :: proc(fileName: cstring, loadIconsName: bool) -> [^]cstring ---                     // Load raygui icons file (.rgi) into internal icons data
     GuiLoadIcons        :: proc(fileName: cstring, loadIconsName: bool) -> [^]cstring ---                     // Load raygui icons file (.rgi) into internal icons data
     GuiDrawIcon         :: proc(iconId: c.int, posX: c.int, posY: c.int, pixelSize: c.int, color: Color) ---  // Draw icon using pixel size at specified position
     GuiDrawIcon         :: proc(iconId: c.int, posX: c.int, posY: c.int, pixelSize: c.int, color: Color) ---  // Draw icon using pixel size at specified position
-    // #endif
 
 
 
 
     // Controls
     // Controls