mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	Merge pull request #4877 from B3n30/fix_user_dir_on_osx
citra_qt: on osx chdir to bundle dir to allow detection of user folder
This commit is contained in:
		
						commit
						bc945fefec
					
				
					 1 changed files with 6 additions and 0 deletions
				
			
		|  | @ -15,6 +15,7 @@ | |||
| #include <QtGui> | ||||
| #include <QtWidgets> | ||||
| #include <fmt/format.h> | ||||
| #include <unistd.h> | ||||
| #include "citra_qt/aboutdialog.h" | ||||
| #include "citra_qt/applets/mii_selector.h" | ||||
| #include "citra_qt/applets/swkbd.h" | ||||
|  | @ -1889,6 +1890,11 @@ int main(int argc, char* argv[]) { | |||
|     QCoreApplication::setOrganizationName("Citra team"); | ||||
|     QCoreApplication::setApplicationName("Citra"); | ||||
| 
 | ||||
| #ifdef __APPLE__ | ||||
|     std::string bin_path = FileUtil::GetBundleDirectory() + DIR_SEP + ".."; | ||||
|     chdir(bin_path.c_str()); | ||||
| #endif | ||||
| 
 | ||||
|     QApplication app(argc, argv); | ||||
| 
 | ||||
|     // Qt changes the locale and causes issues in float conversion using std::to_string() when
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue