this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix surf on win32 builds (#2567)

authored by

Alice and committed by
GitHub
dc4d3779 2478181f

+6 -1
+6 -1
src/studio/system.h
··· 37 37 #define TIC_NAME_FULL TIC_NAME " tiny computer" 38 38 #define TIC_TITLE TIC_NAME_FULL " " TIC_VERSION 39 39 #define TIC_HOST "tic80.com" 40 - #define TIC_WEBSITE "https://" TIC_HOST 40 + #if defined(_MSC_VER) && defined(_USING_V110_SDK71_) 41 + #define TIC_WEBSITE_PROTOCOL "http://" 42 + #else 43 + #define TIC_WEBSITE_PROTOCOL "https://" 44 + #endif 45 + #define TIC_WEBSITE TIC_WEBSITE_PROTOCOL TIC_HOST 41 46 #define TIC_COPYRIGHT TIC_WEBSITE " (C) 2017-" TIC_VERSION_YEAR 42 47 43 48 #define TICNAME_MAX 256