0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 04:42:18 +02:00

Fix update checck bug

Fix bug where updates for windows would check for mac updates and vise
versa.

(I am ashamed)
This commit is contained in:
jp9000 2014-07-17 07:03:27 -07:00
parent a5a7ba4650
commit 5da8d14570
2 changed files with 3 additions and 3 deletions

View File

@ -41,7 +41,7 @@
*
* Reset to zero each major or minor version
*/
#define LIBOBS_API_PATCH_VER 1
#define LIBOBS_API_PATCH_VER 2
#define MAKE_SEMANTIC_VERSION(major, minor, patch) \
((major << 24) | \

View File

@ -879,9 +879,9 @@ void OBSBasic::updateFileRead()
}
#ifdef __APPLE__
#define VERSION_ENTRY "windows"
#elif _WIN32
#define VERSION_ENTRY "mac"
#elif _WIN32
#define VERSION_ENTRY "windows"
#else
#define VERSION_ENTRY "other"
#endif