diff paths.c @ 1524:b96f9fae757f nuklear_ui

Fix Windows build, added Windows default_font_path implementation
author Michael Pavone <pavone@retrodev.com>
date Wed, 07 Feb 2018 00:07:12 -0800
parents 637fbc3b5063
children ab3b465c052c
line wrap: on
line diff
--- a/paths.c	Tue Feb 06 22:44:11 2018 -0800
+++ b/paths.c	Wed Feb 07 00:07:12 2018 -0800
@@ -108,7 +108,7 @@
 #ifdef _WIN32
 		//handle transition from root of a drive to virtual root
 		if (base[1] == ':' && !base[2]) {
-			return strdup(PATH_SEP)
+			return strdup(PATH_SEP);
 		}
 #endif
 		size_t len = strlen(base);