mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-09-03 03:22:40 +02:00
Update to v093r03 release.
byuu says: Updated to support latest phoenix changes. Converted Settings and Tools to TabFrame views. Errata: - phoenix/Windows ComboButton wasn't calling parent pWidget::setGeometry() [fixed locally] - TRACKBAR_CLASS draws COLOR_3DFACE for the background even when its parent is a WC_TABCONTROL
This commit is contained in:
@@ -49,7 +49,7 @@ string configpath() {
|
||||
SHGetFolderPathW(nullptr, CSIDL_APPDATA | CSIDL_FLAG_CREATE, nullptr, 0, path);
|
||||
result = (const char*)utf8_t(path);
|
||||
result.transform("\\", "/");
|
||||
#elif defined(PLATFORM_OSX)
|
||||
#elif defined(PLATFORM_MACOSX)
|
||||
result = {userpath(), "Library/Application Support/"};
|
||||
#else
|
||||
result = {userpath(), ".config/"};
|
||||
@@ -66,7 +66,7 @@ string sharedpath() {
|
||||
SHGetFolderPathW(nullptr, CSIDL_COMMON_APPDATA | CSIDL_FLAG_CREATE, nullptr, 0, path);
|
||||
result = (const char*)utf8_t(path);
|
||||
result.transform("\\", "/");
|
||||
#elif defined(PLATFORM_OSX)
|
||||
#elif defined(PLATFORM_MACOSX)
|
||||
result = "/Library/Application Support/";
|
||||
#else
|
||||
result = "/usr/share/";
|
||||
|
Reference in New Issue
Block a user