mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-09-16 11:06:06 -04:00
Mac: Remove Alpha status from cocoa version
This commit is contained in:
parent
cbd2aa6946
commit
0954f084b6
@ -12,9 +12,6 @@
|
||||
#define GAME_APP_ALT "ClassiCube 1.2.7 web mobile"
|
||||
#define GAME_APP_NAME "ClassiCube 1.2.7 web"
|
||||
#define GAME_APP_TITLE "ClassiCube"
|
||||
#elif defined CC_BUILD_COCOA
|
||||
#define GAME_APP_NAME "ClassiCube 1.2.7 alpha"
|
||||
#define GAME_APP_TITLE "ClassiCube 1.2.7 alpha"
|
||||
#elif defined CC_BUILD_ANDROID
|
||||
#define GAME_APP_NAME "ClassiCube 1.2.7 android alpha"
|
||||
#define GAME_APP_TITLE "ClassiCube 1.2.7 android alpha"
|
||||
|
@ -508,7 +508,7 @@ int Socket_ValidAddress(const cc_string* address) {
|
||||
}
|
||||
|
||||
cc_result Socket_Connect(cc_socket* s, const cc_string* address, int port) {
|
||||
int family, addrSize, blocking_raw = -1; /* non-blocking mode */
|
||||
int family, addrSize = 0, blocking_raw = -1; /* non-blocking mode */
|
||||
union SocketAddress addr;
|
||||
cc_result res;
|
||||
|
||||
|
@ -483,7 +483,7 @@ void ShowDialogCore(const char* title, const char* msg) {
|
||||
|
||||
[alert setMessageText: titleCF];
|
||||
[alert setInformativeText: msgCF];
|
||||
[alert addButtonWithTitle: CFSTR("OK")];
|
||||
[alert addButtonWithTitle: @"OK"];
|
||||
|
||||
[alert runModal];
|
||||
CFRelease(titleCF);
|
||||
|
Loading…
x
Reference in New Issue
Block a user