Skip to content

Commit b472581

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents da4ae8d + ad494c7 commit b472581

File tree

4 files changed

+3
-2
lines changed

4 files changed

+3
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ else()
3232
src/linux/LinuxBackend.cpp
3333
src/linux/LinuxHooks.cpp
3434
src/core/Backend.h
35-
src/linux/linux_test.c
35+
src/linux/linux_test.cpp
3636
)
3737
endif()

src/app/main.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLin
77
return RunWindowsApp(); // Call the main start function from WinApp.cpp.
88
}
99
#else // For other operating systems just return 0 as they haven't been implemented yet.
10+
extern int linux_main ( );
1011
int main ( ) {
11-
return 0;
12+
return linux_main();
1213
}
1314
#endif

src/linux/linux_test_2.cpp

Whitespace-only changes.

0 commit comments

Comments
 (0)