From a611c16e66ab334acb655f2b302d91d3916cf3e7 Mon Sep 17 00:00:00 2001 From: aleepo <96310128+aleepo@users.noreply.github.com> Date: Sun, 26 Dec 2021 15:11:17 -0600 Subject: [PATCH] fix typo (#171) --- examples/custom_file_dialog/custom_file_dialog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/custom_file_dialog/custom_file_dialog.c b/examples/custom_file_dialog/custom_file_dialog.c index 4a662a5..53923d9 100644 --- a/examples/custom_file_dialog/custom_file_dialog.c +++ b/examples/custom_file_dialog/custom_file_dialog.c @@ -85,7 +85,7 @@ int main() //---------------------------------------------------------------------------------- if (fileDialogState.fileDialogActive) GuiLock(); - if (GuiButton((Rectangle){ 20, 20, 140, 30 }, GuiIconText(RICON_FILE_OPEN, "Open Image"))) fileDialogState.fileDialogActive = true; + if (GuiButton((Rectangle){ 20, 20, 140, 30 }, GuiIconText(RAYGUI_ICON_FILE_OPEN, "Open Image"))) fileDialogState.fileDialogActive = true; GuiUnlock();