From 53a0079aa274bc91ce2665cf0d51532506731d9a Mon Sep 17 00:00:00 2001
From: twinaphex <libretro@gmail.com>
Date: Thu, 26 Nov 2015 00:27:39 +0100
Subject: [PATCH] file_path_special.c - cleanups

---
 file_path_special.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/file_path_special.c b/file_path_special.c
index 1f3eec3d7f..0a6b1233d1 100644
--- a/file_path_special.c
+++ b/file_path_special.c
@@ -63,11 +63,12 @@ void fill_pathname_expand_special(char *out_path,
       }
    }
    else if ((in_path[0] == ':') &&
-#ifdef _WIN32
-         ((in_path[1] == '/') || (in_path[1] == '\\'))
-#else
+         (
          (in_path[1] == '/')
+#ifdef _WIN32
+         || (in_path[1] == '\\')
 #endif
+         )
             )
    {
       size_t src_size;