From a4b88f0294c1d051dba55887d70835a518fa16b4 Mon Sep 17 00:00:00 2001 From: Nadia Holmquist Pedersen Date: Wed, 3 Jun 2020 16:49:58 +0200 Subject: Fix paths on Windows --- src/frontend/qt_sdl/Platform.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/frontend/qt_sdl') diff --git a/src/frontend/qt_sdl/Platform.cpp b/src/frontend/qt_sdl/Platform.cpp index 5199254..671fdee 100644 --- a/src/frontend/qt_sdl/Platform.cpp +++ b/src/frontend/qt_sdl/Platform.cpp @@ -155,9 +155,10 @@ FILE* OpenFile(const char* path, const char* mode, bool mustexist) FILE* OpenLocalFile(const char* path, const char* mode) { + QDir dir(path); QString fullpath; - if (path[0] == '/') + if (dir.isAbsolute()) { // If it's an absolute path, just open that. fullpath = path; @@ -165,7 +166,7 @@ FILE* OpenLocalFile(const char* path, const char* mode) else { #ifdef PORTABLE - fullpath = QString("./") + path; + fullpath = path; #else // Check user configuration directory QDir config(QStandardPaths::writableLocation(QStandardPaths::ConfigLocation)); -- cgit v1.2.3