ソースを参照

Fix #274 - Adding semicolon (#275)

Andrew Harker 2 年 前
コミット
b0d7073551
1 ファイル変更1 行追加1 行削除
  1. 1 1
      src/raygui.h

+ 1 - 1
src/raygui.h

@@ -4054,7 +4054,7 @@ static void GuiDrawText(const char *text, Rectangle bounds, int alignment, Color
         }
         }
     }
     }
 #if defined(RAYGUI_DEBUG_TEXT_BOUNDS)
 #if defined(RAYGUI_DEBUG_TEXT_BOUNDS)
-    GuiDrawRectangle(bounds, 0, WHITE, Fade(RED, 0.4f))
+    GuiDrawRectangle(bounds, 0, WHITE, Fade(RED, 0.4f));
 #endif
 #endif
 }
 }