From 2502607a04693be0fff19c8535a7fa4cf1af5e18 Mon Sep 17 00:00:00 2001 From: Pieter Hulshoff Date: Wed, 1 Jun 2016 09:18:27 +0200 Subject: [PATCH] Increased the size of the applicatoin name and current directory to 2K characters for Windows (KMetalMind). --- RetroFE/Source/Execute/Launcher.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RetroFE/Source/Execute/Launcher.cpp b/RetroFE/Source/Execute/Launcher.cpp index 53323f0..182912b 100644 --- a/RetroFE/Source/Execute/Launcher.cpp +++ b/RetroFE/Source/Execute/Launcher.cpp @@ -137,8 +137,8 @@ bool Launcher::execute(std::string executable, std::string args, std::string cur #ifdef WIN32 STARTUPINFO startupInfo; PROCESS_INFORMATION processInfo; - char applicationName[256]; - char currDir[256]; + char applicationName[2048]; + char currDir[2048]; memset(&applicationName, 0, sizeof(applicationName)); memset(&startupInfo, 0, sizeof(startupInfo)); memset(&processInfo, 0, sizeof(processInfo));